Questions tagged [gxt]

GXT, also known as Ext GWT, is a dual licensed component framework that seeks to provide similar functionality to ExtJs for Google Web Toolkit (GWT) applications.

GXT, also known as Ext GWT, is a dual licensed component framework from Sencha that seeks to provide similar functionality to ExtJs for Google Web Toolkit applications.

Although strongly related to ExtJs, due to the fact that both originate from the same company, it consists of a completely separate Java codebase, rather than simply a wrapper around the JavaScript ExtJs code, as was done by the earlier GwtExt library.

Useful links:

1256 questions
9
votes
3 answers

Connecting LDAP server from java application

I am building an application based on GXT (J2EE). Now the problem is that I have to connect the application to a LDAP server. Can you tell me how to connect a LDAP server from our java application and what Library or API I will have to use for that?…
dhiraj
  • 397
  • 1
  • 5
  • 18
8
votes
2 answers

How to apply like search on GWT cell table?

I am using GWT 2.3.I which I am using GWT cell table. Here below is the code for my cell table: public class FormGrid extends SuperGrid { List
formList; @Override public void setColumns(CellTable table) { TextColumn nameColumn =…
Sanjay Jain
  • 3,518
  • 8
  • 59
  • 93
8
votes
3 answers

Whats difference between library EXT-JS , EXT-CORE , EXT-GWT

Whats difference between library EXT-JS , EXT-CORE , EXT-GWT as i have worked on ext-js so please explain me in a layman language :)
Amit Sharma
  • 1,968
  • 5
  • 24
  • 35
8
votes
2 answers

How to implement freeze column in GXT 3.x?

How can frozen columns be implemented in GXT 3.x (from Sencha)? Ext-JS, another product from Sencha seems to implement this, but I can't see where the Java based GXT implement the same…
yazz.com
  • 57,320
  • 66
  • 234
  • 385
8
votes
1 answer

java.lang.NoSuchMethodError: org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.getLocalName(Lorg/w3c/dom/Node;)Ljava/lang/String;

I am using Gxt2.2.3 and Gwt2.2.0 with maven, when i try to run the application in hosted mode through jetty server , am getting the following error trace as follows. org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected…
Jagadeesh
  • 2,730
  • 6
  • 30
  • 45
7
votes
3 answers

chrome/firefox- how to run a javascript command

I am using a gwt based ui design framework (called GXT). In the docs for this framework, it is mentioned that running "javascript:isc.showConsole()" when the app is running, will open the developer console in browser. However when I run this in…
Arvind
  • 6,404
  • 20
  • 94
  • 143
7
votes
1 answer

Any other GXT themes?

The GXT themes which come by default are ok but they're all essentially versions of the same thing with different colors. Looking around I can't find any attractive commercial or free themes. Is there a good place to find new themes or has a third…
Jonathan
  • 1,327
  • 3
  • 15
  • 24
7
votes
2 answers

Gxt combo box selection arrow is not properly aligned in firefox and safari

I am using Gxt-2.2.3's combox box, when it is rendering in IE7 there is no problem with the alignment, but when it comes to Firefox-4.0.1 have got some selection arrow alignment issues as follows. By ran the application is firebug mode , came to…
Jagadeesh
  • 2,730
  • 6
  • 30
  • 45
7
votes
2 answers

Straightforward example for loading data into a Sencha GXT (3.0) ListStore using a GWT RPC call?

Does anyone have or know of an example which demonstrates loading data via a GWT RPC call into a ListStore using Sencha GXT 3.0? I know there are numerous examples of using the ModelData and BeanModel interfaces used in the 2.x versions but 3.0…
Bionic_Geek
  • 536
  • 4
  • 24
6
votes
3 answers

google appengine not supporting FileOutputStream

I am trying to write to a file in Google appengine but it giving a error message java.io.FileOutputStream is not supported by Google App Engine's Java runtime environment even though I imported import java.io.File; import…
Arun Paul
  • 81
  • 1
  • 3
6
votes
3 answers

GXT (Ext-GWT): Layout problems with ContentPanel

I have a ContentPanel that fits the entire window. It has a topComponent, a widget in the center, and a bottomComponent. I'm getting layout problems, when I try to add widgets to the topComponent after the ContentPanel has been rendered once: public…
Chris Lercher
  • 37,264
  • 20
  • 99
  • 131
6
votes
5 answers

How to force a redraw/re-layout in Ext GWT (GXT)?

In GXT, I've got a control with an important panel added to the bottom component, basically like this: public class SamplePanel extends ContentPanel { ContentPanel panel = new ContentPanel(); public SamplePanel() { …
Cuga
  • 17,668
  • 31
  • 111
  • 166
6
votes
5 answers

How to let a GXT grid take up all available width?

I have a grid in GXT, something like this: List configs = new ArrayList(); ColumnConfig config = new ColumnConfig(); config.setId("type"); config.setHeader("Type"); config.setWidth(50); configs.add(config); config = new…
Cuga
  • 17,668
  • 31
  • 111
  • 166
6
votes
2 answers

GWT compile crashes JVM

I am trying to compile a relatively simple, client-side-only GWT 2.5.0 application under JDK 7u7. The project runs perfectly fine in development mode. I also remember it was compiling ok on another machine a while ago. (It had GWT 2.4 and some JDK…
Dkg
  • 105
  • 4
5
votes
2 answers

TextField 'Change' Event only triggers on blur

Normally, the Change event will trigger after the TextField loses its focus (on blur). But I need it to trigger as soon as the value of the field changes, without the need to lose the focus on the field. The KeyListener doesn't cut it, because the…
1
2
3
83 84