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

LazyLoading of children nodes in SmartGWT/extGWT

My case is the following: a. I've got some GWT library: extGWT or SmartGWT, for instance; b. I've got a tree with lazy loading; c. On expansion I load node children; d. I've got millions of children nodes so I don't want them to load at one go on…
borowis
  • 1,207
  • 10
  • 17
0
votes
1 answer

Auto cursor not applied in Gecko

This seems like a rendering engine quirk, as it had been tested and failed to reproduce on WebKit driven browsers (Chrome and Safari for Windows). Description When using a deep nested DOM structure, such as the GXT Grid, the default cursor seem to…
Eliran Malka
  • 15,821
  • 6
  • 77
  • 100
0
votes
1 answer

Gwt LineChart options - make all points visible

Is there any way to set options of LineChart so that all of the points are visible, not only on the mouseover.
Sergey
  • 11,548
  • 24
  • 76
  • 113
0
votes
1 answer

Beginner GXT issues

We have a working web application, which has been developed with ExtJS for client side, and Struts, Spring, Hibernate for server side. now, we are considering to migrate to GXT (or may be GWT itself). The thing is I'm very new to GWT/GXT. and we are…
Khosrow
  • 556
  • 1
  • 6
  • 16
0
votes
2 answers

Why doesn't my GXT form look like the sample?

I've copied all the code from here but instead of looking like the sample it looks like the below screenshot. Obviously I'm missing something fundamental but being completely green in Java, GXT, and web development I'm unsure where to start. Any…
Phil Gan
  • 2,813
  • 2
  • 29
  • 38
0
votes
2 answers

Sencha GXT 2.x Spinner Field

I am having a couple of problems with my SpinnerField in GXT 2.0. First it is showing doubles when the user changes 1.0,2.0 I need it to show Ints 1,2,3 etc. Second, for the life of me I cannot figure out how to add a change listener to it. Like…
james
  • 2,595
  • 9
  • 43
  • 70
0
votes
1 answer

GXT 3 change tab style (add css)

GXT 3 has a function, which adds a tab to tabpanel tabPanel.add(html, new TabItemConfig(title, true)); I have to change style of the name of this tab and also contents. These have no effect: tabPanel.setStyleName("tab-title",…
Alex A. Renoire
  • 361
  • 1
  • 2
  • 19
0
votes
1 answer

GXT - RowEditor marks CheckColumnConfig as modified

I'm using a CheckColumnConfig in conjunction with a RowEditor. The CheckColumnConfig is used to indicate a row in the Grid which the user wants to "Select" maybe to delete the row or indicate to the application which row the user is working on. If…
0
votes
1 answer

Removing filtered text programmatically?

I am using GXT's filtered grid(http://www.sencha.com/examples-2/#filtergrid). once the filter is applied i need to remove filtered text whatever user has entered. is it possible to remove "abc" text programatically without user…
user1016403
  • 12,151
  • 35
  • 108
  • 137
0
votes
2 answers

How can i disable "Add all" button of a GXT DualListField

I am using GXT 2.2.1 and GWT 2.0.4in my project and I want to disable the "Add all" button in DualListField. Please help
shis84
  • 3
  • 2
0
votes
1 answer

Editable grid cell text is not displayed completely?

I have an editable grid. in one of the cell i have entered more than 4000 chars. But the problem is only 4000 characters are visible and remaining are invisible but they are there in the cell.if i select invisible area with mouse then they are…
user1016403
  • 12,151
  • 35
  • 108
  • 137
0
votes
1 answer

is filtergrid available in gxt version 2.2.3?

I am using gxt version 2.2.3. i wanted to use filtergrid available on examples demo http://www.sencha.com/examples/#ExamplePlace:filtergrid. is it available in 2.2.3 version? Thanks!
user1016403
  • 12,151
  • 35
  • 108
  • 137
0
votes
0 answers

ValueProxy's equals() fails because stableId() returns null

Some of my widget code (GXT 3.0) wants to call equals() from a RF-JsonRpc received ValueProxy but it fails because those proxies doesn't have any stableId tag and the equals method implemented in ValueProxyCategory requires it to check if it is…
0
votes
1 answer

GXT: UiBinder new instance of a Widget

I have a TextField form inside a window. Created with UiBinding. Next to the TextField is a button. I wanted to know if it was possible to create a new TextField widget when that button was pressed using UiBinder? This is what I have: Window…
lmcadory
  • 2,149
  • 3
  • 14
  • 15
0
votes
0 answers

How to Distinguish Events.OnClick and Events.OnDoubleClick in GXT

I am using Ext GWT 2.2.4. In our application we are binding onClick event on Grid and making a server call to fetch data on the even of Click. We display the result on a Dialog box. The Problem is, if user clicks on the cell more than one time, we…