0
votes
0answers
43 views

Gwt how to get info from response

I have got question about better way to parse xml package to get some info. First of all this is my html response from server: <html> <head> <meta http-equiv="Content-Type" ...
0
votes
0answers
26 views

Netbeans GWT project deploy issues

I have 2 GWT projects in Netbeans services and admin-services. Both of them have different load template HTMLs services.html and adminservices.html. The problem i have is that when i build and run ...
1
vote
2answers
41 views

GWT uibinder autocorrect off

im using GWT uibinder method and my html contains a textbox like <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui" ...
1
vote
1answer
79 views

CSS is not working in GXT

I am in learning phase of GWT GXT, I my project some of the css are working fine , but some are showing me a strange behavior . for login button. logonBtn = new TextButton("Connect"); ...
4
votes
6answers
159 views

How to put the Icons In the Center of the button in GXT

Hi i am working on GXT i have a button with an Icon. I want to put the Icon in center. Currently it looks like this. the icon of the button is in left (because of IconAlign.LEFT). I want it in ...
0
votes
0answers
28 views

How to set lib directory for the Grails GWT-plugin?

I am using Grails 2.2.1 and the GWT plugin 0.8. The documentation says that you can define GWT dependencies in BuildConfig.groovy as: gwt { version="2.5.0" gin.version="1.5.0" ...
1
vote
1answer
52 views

How to DeSelect a cell in CellList Gwt

I have a CellList in GWT, i need to deselect the cell when one link is clicked without using the selectionchange handler.Can someone help in this situation. CellList<MyClass> cellList; ...
1
vote
1answer
62 views

Exceptions logged with RPC are throwing IncompatibleRemoteServiceException

So right, the basics, this is running on GWT2.5.0 / JDK1.6 and set up more or less as the docs have it set up gwt.xml <inherits name="com.google.gwt.logging.Logging" /> <set-property ...
0
votes
0answers
80 views

GWT TextBox not editable(clickable) in IE8

I am new to GWT, i have a bug assigned for me n GWT, where i am not able to edit the TextBox created during the modification process.TextBox is not editable in IE8 it works fine in Chrome and FF, i ...
0
votes
1answer
68 views

smartgwt + gin Code Splitting

I am looking for example to use code splitting with gin and smartgwt ... In my simple application I have 2 modules AutoLoadModule and WindowModule. In my simple app I just need to load a window when ...
0
votes
1answer
63 views

Possibility of calling my static java method(and passing arguments ) in Ui binder (xml) [duplicate]

Is there a way pass arguments to java methods? Inside the Ui binder I imported class like below <ui:with type="com..myproject.MyUtil" field="util"/> I am calling a normal static method ...
0
votes
4answers
70 views

How to disable MenuBar in GWT

I have a MenuBar in my app and need to disable that based on some condition. The setEnabled(boolean) method is not available on GWT MenuBar hence there is no straight way to go ahead with this ...
0
votes
0answers
48 views

GWT TabPanel TabBar header resize

How to set GWT tabpanel's tab bar header resize with text length or Is it possible to wrap a header text for tab bar????
0
votes
2answers
76 views

Access values on widgets and send to server

I have an interface created from GXT 2.2.5 library, now I need to get user entered values from TextField and send it to server. How can i get this user entered values from textfield? Here the sample ...
0
votes
1answer
57 views

Access values from widgets in GXT

I am new to Sencha GXT framework for GWT, how can i get values from GXT generated TextFields in order to send it to server? import com.extjs.gxt.ui.client.widget.layout.FlowLayout; import ...
0
votes
1answer
70 views

How to create a CellTree which grows dynamically

I am new to GWT and I am having problems creating a Tree whose child nodes grow dynamically. When my page loads the tree looks something like this: ROOT_Node | |_Child 1 | |_Child 2 ...
0
votes
1answer
36 views

simple alignment using gwt

in the image is an horizontal panel having two vertical panel in it, application label and the select item below is an vertical panel and environment and the select item below is ...
0
votes
1answer
40 views

development of an normal GWT Screen with borders

i want to develop a screen as shown in the image using only GWT , im was using smartGwt and im very much new to gwt can u please tell me how to get the border and the dotted lines ? ...
0
votes
5answers
141 views

Adding icons to an button in gwt

i have button and want to set an icon to it along with the text inside it. their is no property to add icon to button like in smartGwt .. any idea how to achieve it please help.
0
votes
1answer
64 views

centering an element in the decorative popup panel in gwt

the pop up is a decorative pop up , the text in it is a label and close is a button. i have added the label and a button to horizontal panel and then added it to popup panel. i have tried with both ...
0
votes
2answers
108 views

reducing space between a label and list Box in gwt

the environment is a label and and next to that is a list box in an horizontal panel , please tel me how to reduce the apace between these two , i tried with set spacing to 0 it doesn't seem to work ...
0
votes
2answers
100 views

window.alert change title in gwt [duplicate]

when ** Window.alert ** is used in gwt, a window pops up with the message , I want to ** change the title ** of that window , Please help as I need it urgently
9
votes
2answers
193 views

GWT Source Code Repo - GIT and SVN - which is the one to track for changes?

Which is the official gwt source code repo to be tracked for changes? The git way is here - https://gwt.googlesource.com/gwt/ The old svn way is here - ...
3
votes
1answer
120 views

GWT HtmlPanel filled with nbsp; characters (GWT's SafeHTML?)

I'm using GWT 2.5 in one of my new projects and ran into a small obstacle. The previous versions of GWT had SafeHTML disabled for the HTMLPanel which meant that if I put a large block of text in an ...
0
votes
1answer
97 views

Disclosure panel header widget client bundle,@sprite is not working

I am having DisclosurePanel, as header content i have HorizontalPanel which is applied style, these styles is having background image, which uses ClientBundle with @sprite. But issue is the style is ...
1
vote
1answer
64 views

GWT CSSResources limit of css file size 65535 bytes limit

is GWT CSSResources limits css file size should not be more than 65535 bytes. why so?
3
votes
1answer
78 views

Revert (Undo) implementation in GWT

We are trying to build a GUI framework using GWT. We are finding it hard to implement the cancel functionality in the framework. Required feature is this: We have CRUD screens which have pop-ups, ...
2
votes
1answer
294 views

GWT: How to simulate F11 key press event?

I was wondering, can we trigger any key press even in GWT without JSNI? For example, say I have a image or a button in the header of my application. On click of it I want to go fullscreen on browser ...
0
votes
1answer
408 views

TabLayoutPanel not showing widgets only Tab items are visible

Simple example of TabLayoutPanel not showing container widgets only Tab items are visible. Something going wrong is it works for IE8 public class DemoGWT implements EntryPoint { RootPanel rp = ...
0
votes
1answer
95 views

GWT: TabPanelLayoutPanel hide or show Tabbaritems

Is there any way to hide/show TabBar items in TablayoutPanel
0
votes
1answer
67 views

Deploy on different context on embedded Jetty in GWT hosted mode

While running my webapp using GWT hosted mode, I haven't found a way to deploy it outside root context of Jetty. I could only do that while using an independent app server and running hosted mode ...
1
vote
1answer
51 views

How can I get the text in a EmptyTableWidget in GWT CellTable

My code is CellTable celltable = new CellTable(); celltable.setEmptyTableWidget(new Label("No")); Here I want to get this "No" from CellTable I tried as ...
1
vote
0answers
122 views

GWT DateBox and EditorErrors

What is the best way to generate/participate in validaton with EditorErrors when a DateBox which is bound to a driver gets invalid format string. Currently, in DatePicker, it marks the field red, ...
2
votes
1answer
213 views

GWT-CheckBox: rounded edges

How could i add curved corner to a gwt-checkbox using css? .gwt-CheckBox { border-radius: 5px 5px 5px 5px; } This Doesn't works!!!! i also tried this too. but no change. .gwt-CheckBox > ...
0
votes
1answer
71 views

Required solution for all Textbox on value change event - generic way

In my application we are using 1. Screen are designed using UIBinder with a view class to bind 2. Presenter as controller and model. 3. We do have Base Presenter (abstract with few generic ...
1
vote
0answers
70 views

GWT Multiple sessions - Debug in Development Mode

I am trying to have multiple debug sessions from either multiple/same browser, I receive a blank screen. For example, when I try http://127.0.0.1:8888/browser.html?gwt.codesvr=127.0.0.1:9997 from ...
5
votes
1answer
256 views

GWT Requestfactory performance suggestions

I am observing really bad performance when using GWT requestfactory. For example, a request that takes my service layer 2 seconds to fullfil is taking GWT 20 seconds to serialize. My service is ...
0
votes
1answer
136 views

could not integrate GWT with Spring RestTemplate implementation

I'm a beginner in GWT. Currently I'm trying to create an Web application in Spring to consume data from REST and displays those details in GWT. So, I used Spring RestTemplate for client(to make a ...
0
votes
3answers
614 views

How to align text of selected CellTable columns in GWT?

I want to right-align numeric values in a CellTable. I already tried looking for ways to assign a style name for selected columns so I could align it with CSS but still couldn't figure out. I also ...
0
votes
3answers
533 views

GWT - button inside v3 google maps infowindow

I am trying to figure out how to propagate events for components inside google maps InfoWindow. I create anchor or a button and want to handle click event on any of those. I have found solutions ...
0
votes
2answers
172 views

How to close a window in GWT

I was required to put a "Done" button in a GWT Composite (despite already having the close icon), it should simply close the window upon clicking. Unfortunately, I can't find a .close() method to ...
1
vote
1answer
124 views

GWT: Is it ok to call ensureInjected() in onModuleLoad?

In this documentation page it is adviced to use ensureInjected() per view/widgets: The recommended pattern is to call ensureInjected() in the static initializer of your various widget types ...
0
votes
1answer
140 views

GWT manipulating DOM elements caveats

Following this question I have recently asked : Understanding Document.createElement() Here is the context : There is a text-zone in my GWT GUI that holds a text Users can select a word (or a ...
0
votes
1answer
33 views

Resizing TextInputCellCustom in GWT

I have a table that contains input cells for quantities. I cannot change the default size of TextInputCellCustom even if I already set the column width. Is there a way to resize the ...
1
vote
0answers
314 views

GWT requestFactory + editor framework reloading associated entity

I am using GWT 2.5rc1 with RequestFactory and the Editor framework. When I save an entity with an associated model, the server's Locator reloads the associated model before saving. Thus, any changes ...
1
vote
0answers
136 views

Remove Shadow which appears on expand of SimpleComboBox ext gwt

I want to remove the shadow which appears on expand on SimpleComboBox. I get the shadow as attached image. below is my code private SimpleComboBox<String> getSimpleComboBox(List<String> ...
0
votes
1answer
252 views

Propagate event from internal panel in GWT

I created component, which is Composite Panel (let's call A) which has inside several other Composite Panel (B1, B2, B3 ...) and each of internal Composite Panel (B1, B2, B3 ...) fire itself ...
0
votes
1answer
390 views

How to Get Textfield from Grid in GWT EXT

I have one one Grid which contain 4 column and somewhere column contain TextField and somewhere ComboBox, I achieved this by calling renderer for particular ColumnConfig. Each row is haveing one ...
0
votes
1answer
196 views

How can we access the actual element in Selenium-webdriver (Java)?

In selenium-webdriver (Java), We can get the GWT element for eg. WebElement obj = driver.findElement(By.id("gwt-debug-celltable")); By obj we can get that webelement of the celltable but we won't ...
1
vote
2answers
374 views

GWT calling java method from javascript not working

I have a requirement where I have to call a java GWT method from a javascript but it does not work. No exception is thrown but the application hangs somewhere and the code doesn't run. The application ...

1 2 3 4 5 6