Questions tagged [gwt2]

GWT is an open source and free framework made by Google.

Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. GWT is used by many products at Google, including Google AdWords and Orkut. It's open source, completely free, and used by thousands of developers around the world.

The coolest thing GWT provides is that it makes the developer create rich web applications without knowledge of JavaScript. It makes developers write code in Java and it compiles into JavaScript specifically made and optimized for each browser, providing cross-browser compatibility and security and raising developer productivity.

GWT 2.x supports:

  • Development mode
  • Layout panels
  • Bundled client resources
  • Editors framework
  • RequestFactory
  • MVP framework
  • Cell widgets
  • SafeHtml

You can find more about it at GWT's official web site.

412 questions
0
votes
1 answer

Migrating GWT 1.7 to GWT 2.4

I am trying to upgrade GWT from 1.7 to GWT 2.4 but I get build errors saying Errors in 'jar:file:/C:/src/project/lib/gxt.jar!/com/extjs/gxt/ui/client/widget/Component.java' [ERROR] Line 1280: Cannot reduce the visibility of the inherited method…
Narayana Nagireddi
  • 729
  • 1
  • 13
  • 33
0
votes
2 answers

GWT How to specify name of Submit Button?

I have integrated my Spring application with GWT. My application has a Login page with 2 submit button (1) Login and (2) Sign Up / Register. Now i have added these two buttons in login page successfully. But how can i specify their name so that i…
Ankur Raiyani
  • 1,509
  • 5
  • 21
  • 49
0
votes
1 answer

How can I update the GWT CellTable columns dynamically

I just want to update the CellTable columns. See for eg. Header1 | Header2 | Header3 | ------------------------------- Column11| Column12| Column13| Column21| Column22| Column23| Column31| Column32|…
Gnik
  • 7,120
  • 20
  • 79
  • 129
0
votes
1 answer

Listbox outofbound error

I have a trying to put value from arrayList to List box. but it gives me error out of bound exception. getListValue() returns arrayList. for(int i = 0;i
GameBuilder
  • 1,169
  • 4
  • 31
  • 62
0
votes
1 answer

GWT popup panel is Transparent??

I am using Gwt , I have a Label. On the onClick Event there is a PopupPanel, Whre tree is added. the problem is the the popupPanel is transparent. when the popup.show is executed , the panel behind popupPanel is seen through the popupPanel. How to…
NewCodeLearner
  • 738
  • 3
  • 14
  • 38
0
votes
3 answers

gwt menu implementation

I want to implement menu in GWT as shown on this website: http://www.openkm.com/en/ I have created the menu system and I am able to display alerts from menu using following code: Command cmd = new Command() { public void execute() { …
0
votes
1 answer

Server-side RequestFactory related error with no stack trace or any other details

Can someone tell me how can I squeeze some more information from GWT application if all error reports that I see in logs are: Client side: Caused by: java.lang.RuntimeException: Server Error 500... Server side: [ERROR] 500 - POST /gwtRequest…
Piotr Sobczyk
  • 6,443
  • 7
  • 47
  • 70
0
votes
1 answer

Creating PDF files in GWT webapp

I have a GWT webapp, and there are various tables showing in the pages. I need to have a mechanism put in the webapp to convert the tables through XML/XSLT files into PDF files. I researched for PDF file converters and I found the following…
GingerHead
  • 8,130
  • 15
  • 59
  • 93
0
votes
1 answer

How can we set the Header of CellTable Dynamically?

I just want to set the Header text of every column dynamically. |Header1|Header2|Header3| ------------------------------------------------------- | ROW 1 ---------------------------------------------------- | ROW 2 I need to set…
Gnik
  • 7,120
  • 20
  • 79
  • 129
0
votes
2 answers

Adding list sub-editors to tab panel

I use ListEditor to allow editing list of chilren and I do everything just like I saw in some examples.The only difference from examples is that I want widgets editing children to be added as a tabs to some TabLayoutPanel. The problem is that I…
Piotr Sobczyk
  • 6,443
  • 7
  • 47
  • 70
0
votes
1 answer

how to trim text of richtextarea in gwt

I have used "RichTextArea" in GWT. Now i want to trim the text of the richtextarea.gettext() when i am submitting the form. But if i have only entered spaces and enter key in my textarea then richtextarea.gettext() will not going to trim it as it…
Sumit Prajapati
  • 91
  • 1
  • 12
0
votes
1 answer

set the values in Listgrid (smartGWT)

I am trying to use smart Gwt, Listgrid. I am using both com.google.gwt.user.client.ui and smart gwt. I have value in a ListGridRecords[] records. I am unable to set the values in table. this piece of code is in composite. public TableDocument(Action…
GameBuilder
  • 1,169
  • 4
  • 31
  • 62
0
votes
1 answer

How to view GWT StackLayoutPanel without setting its Height in pixels

I'm using GWT, I'm creating StackLayoutPanel dynamically. For eg. I have 4 or 5 StackLayoutPanels in a VerticalPanel. I set height of StackLayoutPanel in pixels. If i don't set the Height i see only one StackLayoutPanel in the view instead of 4 or…
Gnik
  • 7,120
  • 20
  • 79
  • 129
0
votes
1 answer

not able to use smart GWT

trying to use smart GWT Using smart gwt 2.5 dowloded from link below smartgwt 2.5 Firefox 6.0 I made a small web application project(without smart GWT) which is working fine. Now in the *same project i added smartGwt 2.5 and added
GameBuilder
  • 1,169
  • 4
  • 31
  • 62
0
votes
2 answers

404 error in gwt project- servlet is correctly defined in web.xml but still getting 404 error

I am working to create a web app using GWT+Java backend. The host page is "App.html" The app also has a RPC, and the host page when initially loaded, makes an RPC call. However this is the message I am getting from Javascript console in Google…
Arvind
  • 6,404
  • 20
  • 94
  • 143
1 2 3
27
28