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
4
votes
2 answers

Is it possible to implement cross-browser username/password autocomplete in GXT?

Last night, I did a quick spike to try and implement username/password autocomplete in my GXT application. By "autocomplete", I don't mean Ajax-style autocomplete, but rather browser-based autocomplete. The best information I found on this via…
Matt Raible
  • 8,187
  • 9
  • 61
  • 120
4
votes
2 answers

How to set the default sort direction when clicking grid header column in GXT 2.2.5

Is there a way to control the default sorting order used when first clicking a grid header? Suppose, I am having two columns one is name and another is downloads. i want to set name as ASC order and downloads as DESC on first click on grid…
Dipesh Gandhi
  • 765
  • 1
  • 13
  • 31
4
votes
3 answers

JavaScript framework for client

My team consists of more java guys and limited experience with JavaScript. I know this question have been asked several times, but just to get my facts right, I need to clarify few things as my experience in client side technologies are very…
Charith De Silva
  • 3,650
  • 4
  • 43
  • 47
4
votes
1 answer

How to merge grid cell in GXT

I'd like to know if it's possible to merge cells in a GXT Grid like this: I suppose I have to override a renderer, but cannot find which one. Can someone show me the way using GXT 3.0 ?
NiziL
  • 5,068
  • 23
  • 33
4
votes
2 answers

Where did the GXT 2.2.5 Demo Explorer site go?

Sencha released a new version of GXT. They have a nice Demo Explorer site where you can see example and see the code. However, we are still using the previous version 2.2.5 and the Demo Explorer site is now running on the new version 3. Is the…
Brambo
  • 835
  • 7
  • 12
3
votes
3 answers

Cannot fill simple GXT Grid with local data

I'm just trying to display some rows in a GXT grid using the code below. However the grid is only displaying it's headers. What am I doing wrong here? public void onModuleLoad() { //MainScreen mainScreen = new MainScreen(); RootPanel…
jaxvy
  • 5,040
  • 1
  • 21
  • 22
3
votes
2 answers

GXT -coloring entire grid row according to one cell in row

. . I colored one column according to the value of cell but i want to color the entire row (means the cell contained row ) in gxt grid help me here is my code for coloring the cell (i want to color the row instead of the cell) …
Amith
  • 1,907
  • 5
  • 29
  • 48
3
votes
2 answers

How to work with GXT Grid?

I have a DTO object with fields: public class EmpDTO extends BaseModel implements java.io.Serializable { private short empno; private EmpDTO emp; private DeptDTO dept; private String ename; private String job; I try output this…
Selector
  • 506
  • 1
  • 6
  • 21
3
votes
1 answer

How to create a hover tooltip using GWT and GXT 3

I am trying to create a hover tooltip (using GWT and GXT 3) which comprises of a question mark icon and another html element (hidden) which will be shown when the user hovers the question mark icon. I've been googling a lot but there is no so much…
vhbazan
  • 1,240
  • 1
  • 17
  • 26
3
votes
2 answers

How to reload data rows in GXT grid?

Assuming that data retrieves from DataStore using RPCproxy, populate to grid using ListStore upon opening the page. Then, there's a form to add an entity and after modification it will reflect the new list in GXT grid with the new added row. How…
Lynard
  • 91
  • 1
  • 2
  • 6
3
votes
1 answer

ExtJS vs ExtGWT - Are they functionally equal?

Assuming a person has same level of expertise in JS and Java, Should he choose ExtJS or ExtGWT for a new project with Java / Spring server side backend, 1.Are they functionally equal?. All the widgets available in ExtJS are available in ExtGWT? 2.Or…
moorsu
  • 239
  • 1
  • 3
  • 9
3
votes
4 answers

GWT and Jersey integration

I've built an app that is using ExtJS that connects through Ajax requests to a Jersey RESTful service. All is working well in this app but now I want to port it to ExtGWT. Since ExtGWT already has the RPC servlets to handle the client-server…
Dan L.
  • 1,717
  • 1
  • 21
  • 41
3
votes
2 answers

Ideas about reducing code length, JS size(loading time) in GWT, GXT, SmartGwt etc

Let's make brainstorm about "What could we do to reduce code size in GWT, GXT, SmartGWt etc.?" For Example; To use a button; Button b = new Button(); b.setText("Ok"); b.setListener(this); b.setEnabled(false); Button b2 = new…
Yusuf K.
  • 4,195
  • 1
  • 33
  • 69
3
votes
2 answers

KeyPress handler is not working for first letter

I need to print something in the method on every key press event. I have tried the below code and the problem with that is, first key press in always returning null. Whereas, after typing the second letter, it prints the first key event. Key Press…
Swats
  • 68
  • 7
3
votes
1 answer

How to implement a color picker field in Sencha GXT?

Color Picker Field dropdown: Should also need to be provided the functionality to add custom colors when clicking on the "More Colors" just like in MS Paint. Any out of the box solutions are also welcome.As far as i have checked in SenchaGXT am…
appatuck3r
  • 91
  • 1
  • 1
  • 9