Questions tagged [gwt-ext]

GWT-Ext is an Open Source GWT Widget Library. that wraps around the Ext JS 2.0.x library. It has been superseded by SmartGWT.

113 questions
0
votes
1 answer

How to render element in gwt?

From last few months I am working on gwt-ext.In that I am using a doLayout() method of Container class.Here is description of it. Force this container's layout to be recalculated. A call to this function is required after adding a new component to…
Sanjay Jain
  • 3,518
  • 8
  • 59
  • 93
0
votes
2 answers

GWT - How to put Widget B on Widget A - help

I am looking someway to put widgets on each other (each on its layer or something...). Something like the Swing CardLayout but with a transparent background support. For example I have Image img=new Image("imageA.png"); HTML h=new HTML("
user592704
  • 3,674
  • 11
  • 70
  • 107
0
votes
2 answers

Session Variables

How can i add Session Variable visible to the whole application in GWT? like in C# you would do something like Session.Add("mySessionVal", "Hello"); How do you do this in GWT? Thank you
user710502
  • 11,181
  • 29
  • 106
  • 161
0
votes
2 answers

create custom widgets

How can I create a widget from the Javascript. For example I need to create a simple button or table . I have some thirdaparty javascripts which draw tables. Now if I want to create GWT widget by using those javascript what should I do first? How…
user414967
  • 5,225
  • 10
  • 40
  • 61
0
votes
1 answer

gwtext.jar's version generated by gwt plugin of Eclipse

Currently I am using GWT 2.3.0 sdk and installed the google web toolkit plugin for eclipse. I created a web application project with the plugin and want to use GWT-Ext. Then, right click on the module (com.company.project) and choose "Google Web…
Sorlo
  • 1
  • 1
0
votes
2 answers

Nvigation within a GWT application

I intend to build a web application where users can enter their time every week and have been struggling to get my head around the concept of a single page in GWT that gets repainted with data depending on the user actions. After researching a lot…
Prashanth
  • 1,388
  • 2
  • 11
  • 26
0
votes
3 answers

Session management in the gwt

I am working on an GWT-ext application. In this application I managed client side session. For this I write below code: To manage the session: import com.google.gwt.user.client.Timer; public class ClientTimers { private static final Timer…
Sanjay Jain
  • 3,518
  • 8
  • 59
  • 93
0
votes
2 answers

Window close issues in gwt -ext

Hello all I am using gwt-ext in my application.In that application session time is 5 minutes. My issues is that If any window is open to render some information & in between session goes out then user logged out but the opened window is not closing…
Sanjay Jain
  • 3,518
  • 8
  • 59
  • 93
0
votes
1 answer

check a checkbox in a checkboxSelectionModel

so.. I have a checkboxSelectionGrid like the one in this link: http://gwt-ext.com/demo/#checkboxSelectionGrid I want to select multiple post tex all with the same company. how do I do that?
derp
  • 277
  • 1
  • 4
  • 7
0
votes
2 answers

textarea charcounter

How do I make a label to show the charcount of a TextArea? I have the following code: public void onChange(Field field, Object newVal, Object oldVal){ counterLabel.setText(textArea.getValueAsString().length() + "/160"); } problem is I have to…
derp
  • 277
  • 1
  • 4
  • 7
0
votes
6 answers

Is gwt slow or normal?

i want to ask about the speed of gwt-ext applications Are there any one tried Gwt-ext application and know that Is it slow or normal ? can i handle images with gwt-ext as example i want to make the image black and white ? thank you saebnajim
saebnajim
0
votes
3 answers

GWT combobox not displaying correctly

I am using GWT with GWT-EXT running in glassfish. I create 2 combo boxes as follows: import com.extjs.gxt.ui.client.widget.form.ComboBox; import com.extjs.gxt.ui.client.widget.form.SimpleComboBox; this.contentPanel = new…
James
  • 3,597
  • 11
  • 47
  • 57
0
votes
2 answers

Set popup-window-size corresponding to window-size

I have an gwt-ext window (used as a popup), this popup is launched from a GWT application. I´m searching for a solution to set the window-size of the popup to a size, that it nearly fills the screen, not maximize, but to fill the area of an…
Tobias
  • 7,238
  • 10
  • 46
  • 77
0
votes
3 answers

file download using RequestBuilder of gwt

I need to implement file download .I don't want give any server side file urls to download directly .I created a servlet which will open the file and write it to stream of response.Now coming to front gwt i have onResponseReceived(Request request,…
Bhaswanth
  • 283
  • 6
  • 14
0
votes
1 answer

GXT - Warning in AppEngine?

I recently started reading about and tried working on GXT. Few days back, I tried to run a simple GxtGridExample code. Source code : GxtGridExample It did compile and run properly. But when I tried running it in web browser giving some url like …
Saurabh Gokhale
  • 53,625
  • 36
  • 139
  • 164