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
0
votes
1 answer

GXT3 VerticalLayoutContainer height bug

I little speak english :( (i use gtranslate...) I create GWT2.5(with requestfactory)+GXT3 MVP application My Main View is a BorderLayout west: shortcut panel(verticalLayoutContainer) south: toolbar (status) north: toolbar (menu) my…
user1035341
  • 71
  • 1
  • 6
0
votes
1 answer

Filter icon in GXT (not Ext-JS) grid header

I am working on a grid in GXT (not Ext JS) 2.4 and got stuck with this following issue. I am trying to flag a column with a dynamic icon as soon a filter is set on it so that the user can know that he/she has applied a filter on the column. It is…
0
votes
1 answer

Call validate() in unit test on Field after setValidator() in GXT

I have set a Validator on a TextField using setValidator(). The input is validated fine when I run the application. When writing unit tests against my GUI I set the validator on the TextField and then set the value to a invalid value. However when I…
Will
  • 2,858
  • 6
  • 33
  • 50
0
votes
1 answer

GWT-GXT FileUploadField

I tried making a form in GXT to upload files, but I see more examples on the net, I failed to make it work a simple FileUploadField to save the file locally. Cde fragment: formPanel = new FormPanel(); formPanel.setBodyBorder(false); …
0
votes
0 answers

Cannot set Sencha GXT window size

I'm playing with the Sencha GXT desktopapp example. Tried all methods below to change the window size. But when I open the window, the size is not what I…
YongJiang Zhang
  • 1,989
  • 2
  • 20
  • 25
0
votes
1 answer

Can GXT and AutoBeans process XML when the root node has a namespace declaration?

I have an XML message I am attempting to parse using GXT and AutoBeans. The root node of my XML has a namespace declaration and it appears that the AutoBean parser cannot read the XML. I set up the root of the AutoBean object graph with a…
Bionic_Geek
  • 536
  • 4
  • 24
0
votes
1 answer

How do I add items into a Simple Combo Box directly from an external *.xml file in GXT?

I am facing some difficulties with GXT SimpleComboBox. Can someone please tell me how to add combo box items from an external *.xml file? Here is more details: I have this information.ui.xml file as a uibinder. Here, I have added a simple combo box…
0
votes
1 answer

How to add radio button to a grid in GWT?

I have a Grid in my panel. I want to add Radio on the grid as a Column, but am not quite sure how to do it. Please tell me how can I have a Radio button column config. I tried to search in google, but found no solution over it. Any help is…
iAmSavy
  • 107
  • 1
  • 9
0
votes
1 answer

GWT & GXT Problesm with javascript inside Html fragment

As I get some problem with integrating Html code from designer work in Gxt, I decided to run very simple test and start by using the Gwt HtmlPanel, and I can't explain why the javascript included is not rendered. public class TestHTML implements…
Alain BUFERNE
  • 2,016
  • 3
  • 26
  • 37
0
votes
1 answer

Sencha GXT XTemplate tpl for inside tpl for

I'm trying to use XTemplates of GXT 3.0 (similar as EXT) and here are 2 simple java objects that have below relationship: class A { String name; public String getName() { return name; } } class B { String name; public…
neojh
  • 27
  • 5
0
votes
3 answers

Handle Window close event

I'm trying to handle the event when the close button of a Window is clicked: // View Code @Override public void attachWindowListener(WindowListener listener) { window.addWindowListener(listener); } // Presenter code …
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

Allowing For Scrollbar When Resizing Container

I'm developing an application using GWT 2.3.0 and GXT 2.2.5. I've got a LayoutContainer with ScrollMode set to AUTO and layout set to RowLayout with a horizontal orientation. It's used as the display window for my application. The problem is that…
NestorDRod
  • 166
  • 1
  • 14
0
votes
1 answer

TreeStore DragNrop activity not reflected in TreeStore

I created a simple DragNDrop editor to modify a tree to be persisted in my db. (Using GXT 2.2.5 can't upgrade) I have a TreePanel constructed with a TreeStore. The TreePanel is both a TreePanelDragSource and TreePanelDropTarget. The drag/drop works…
0
votes
1 answer

Row within a Row with Ext GWT Grid

Is is possible to have a RowExpander that is not HTML but rather another Row? That is, a row have a expand [+] icon then when expanded, sub rows appear like a "child-row""? For example I have a List like this: ModelData column1 = new…
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
2 answers

Ext GWT 2 - Group grid rows

Is it possible to group Grid rows by column values? For example I have this ModelData: ModelData model = new BaseModelData(); Map data = new HashMap(); data.put("Date", "20:55:06"); …
quarks
  • 33,478
  • 73
  • 290
  • 513