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
5
votes
3 answers

GXT (Ext GWT) problem with SimpleComboBox

When creating a GXT SimpleComboBox (as in the accepted answer here), final FormPanel fp = new FormPanel(); SimpleComboBox combo = new SimpleComboBox(); combo.add("One"); combo.add("Two"); combo.add("Three"); …
Chris Lercher
  • 37,264
  • 20
  • 99
  • 131
5
votes
7 answers

How to configure Ext GWT with GWT Designer?

I have problem with configuration GXT with GWT Designer. I have all new releases of Eclipse, GWT plugin and GXT and cannot configure GXT to work with GWT Designer. I setup my project so that I can compile my GXT project and run it in…
Zenqw
  • 51
  • 1
  • 1
  • 3
5
votes
3 answers

GXT (EXT-GWT) Project compilation failed - Default Setup

I have set up GXT by following default instructions. When i run the project in Eclipse, everything displays nice in development mode. On the other hand when i try to compile the project it gives me this error: Compiling module com.gxt.Gxt [ERROR]…
kostas trichas
  • 2,923
  • 7
  • 28
  • 37
5
votes
5 answers

Adding selection listener to GXT Grid?

I'm trying to add a selection listener to my GXT (Ext GWT) Grid, but I can't seem to get it to fire. I've tried many variations of this with no luck: myGrid.addListener(Events.Select, new SelectionListener() { @Override …
thedude19
  • 2,643
  • 5
  • 34
  • 43
5
votes
2 answers

Gxt focus management

I am working with Gxt. I need to set focus to the first enabled field on the page. But I have a lot of pages and I want to centralize that behaviour. There is a lack of documentation in Gxt so I wonder if somebody has met such a problem and can help…
Zalivaka
  • 763
  • 2
  • 13
  • 20
5
votes
4 answers

GXT: How to bring the login page when session expires

I am developing a web application using GXT, Hibernate, mysql etc. There is a login page for the application. Actually I am getting problem to set the login page when the session expires. We can set the timeout in the web.xml file but in that case…
dhiraj
  • 397
  • 1
  • 5
  • 18
5
votes
4 answers

How do I create a non-editable GXT ComboBox?

I'm using GWT/GXT and trying to create a "normal" ComboBox - one that you cannot type in, but you can type a single character and it will automatically go to the first item in the list that starts with that letter. So, I don't want it READONLY, I…
Brian Pipa
  • 808
  • 9
  • 23
5
votes
1 answer

GWT 2.6 with GXT-3.0.1 error in compile

since the 2.6.0 release of GWT which dropped support of ie6 browser my current project which also uses GXT is failing to compile with the following error: Loading inherited module 'com.sencha.gxt.ui.GXT' Loading inherited module…
Panos Karampis
  • 557
  • 6
  • 18
5
votes
3 answers

GWT vs GXT which is better?

We are trying to port existing thick client to thin client. We are looking at the different technologies, We are trying out different options. We tried GXT as well as GWT in our sample excercises. Which one do you think we should go ahead with? Are…
user1861971
5
votes
1 answer

GXT3 Grid cell rendering

How can I render a grid column as multiline grid column using GXT 3 grids. e.g ColumnConfig name = new ColumnConfig(props.name(), 50, "Name"); name.setColumnStyle(new SafeStyles(){ @Override …
user1860365
  • 51
  • 1
  • 2
4
votes
5 answers

Debug console for GWT/GXT

I need to see component tree of the GWT application. DOM tree will be also acceptable. Unfortunatelly GWT hosted browser does not provide access for devToolbar. The only way I found is to compile to javascript and then use regular browser. But…
Mike Chaliy
  • 25,801
  • 18
  • 67
  • 105
4
votes
0 answers

BrowserChannel$RemoteDeathError: Remote connection lost in GXT

. . . i created a gxt project and i made RPC mechanism for Retrieve data But it works fine at first time even RPC call also. But after that it doesnt while clear cache memmory it works in mozilla but not in crome. My Error is follows help me…
Amith
  • 1,907
  • 5
  • 29
  • 48
4
votes
0 answers

Does IntelliJ GWT studio plugin support Hotswap of GWT client side classes?

I am working on a project using GXT. When I use Eclipse as the development environment, I see that the client side classes are being hot swapped. For example, if there was a button pressing which would render a "new" customWidget built using the…
J_a_i
  • 53
  • 3
4
votes
3 answers

Which is the good UI framework vaadin or Ext-GWT ? Please suggest if anything else is better

I have not used both the frameworks. When i went through a analysis both seem good and provided lots of controls. Still i am confused on choosing a framework. I wont liquid framework which will help the user to align the controls as they wish. Can i…
Venkatesh
  • 83
  • 2
  • 6
4
votes
5 answers

Ext GWT (GXT) tooltip over a grid row

I'm developing a custom tooltip using Ext GWT (GXT) for a project of mine, and this tooltip has to appear over Grid rows when they're selected. I can't use the default GXT tooltip or quicktip because I need be able to add Components (like buttons)…
Eduardo Palma
  • 41
  • 1
  • 3
1 2
3
83 84