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

Using XTemplate with Grid

I'm trying to use XTemplate to display Row information of a Grid: List users = new ArrayList(); users.add(new User("John", "Smith")); users.add(new User("Bob", "James")); UserList list = new UserList(users); …
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

Storing Grid State per User and storing serverside - EXT GWT

So I have been looking around the interwebs on how to store an EXT paging grid state on my server so that when users login back in their grid it is how they saved it. I found this…
jdennison
  • 2,000
  • 2
  • 15
  • 22
0
votes
1 answer

How to change text size for a Status Widget in GXT

I need to create a info message for a FieldSet which contains a grid. I am setting the message using: Status status = new Status(); status.setText("You can choose max 40 persons"); status.addStyleName("x-form-info-tip"); But in the output, the…
beebris
  • 55
  • 2
  • 9
0
votes
2 answers

How to Add a button to the Gxt HtmlEditor

Is somebody knows a way of adding a button to the Toolbar of the HtmlEditor without doing with JSNI
Alain BUFERNE
  • 2,016
  • 3
  • 26
  • 37
0
votes
1 answer

How to change the font in the grid GXT3

Sorry for the simple question, how to change the font in the grid?
Igor
  • 1
0
votes
2 answers

How to disable 'Add Selected' button of a DualListField in GXT?

I am working with GWT 2.0.0 in a Java 6 project. The functionality I am working on permits the user to select items within a DualListField but is allowed only a certain number of items. So I require that the 'Add selected' and 'Add all' buttons in a…
beebris
  • 55
  • 2
  • 9
0
votes
3 answers

Setting a minimum width to viewport in GXT

Is there a way i can set a minimum width to the Viewport? The Viewport should work as usual beyond this width.. Im using GXT 2.2.5 and GWT 2.4 in the project. Thnx in advance.
0
votes
1 answer

questions about ImageViewer.gwt.xml

Our GXT guy is out on jury duty and I'm trying to figure out a problem with our ImageViewer.gwt.xml file in our application. We have a file in our model called Global.gwt.xml that contains the following: We do…
Thom
  • 14,013
  • 25
  • 105
  • 185
0
votes
0 answers

GXT / GWT / Javascript - Copy data to the clipboard

Possible Duplicate: How to copy to the clipboard in JavaScript? I have a text and I'd like to copy the data to the computer's clipboard. Is there a widget to do so in GXT, if not, is there in GWT, if not, which is the low level Javascript…
Jordi P.S.
  • 3,838
  • 7
  • 36
  • 59
0
votes
3 answers

How to apply CSS style while printing?

I am using GWT/GXT. i have used GWT's grid and each row is highighted in background color using CSS. but applied css is not printed in printed page. how can i print with css? I am calling Print functionality as below: Print.it("
user1016403
  • 12,151
  • 35
  • 108
  • 137
0
votes
1 answer

How to Get Textfield from Grid in GWT EXT

I have one one Grid which contain 4 column and somewhere column contain TextField and somewhere ComboBox, I achieved this by calling renderer for particular ColumnConfig. Each row is haveing one button with name "Save". User can even make the…
Jayesh
  • 6,047
  • 13
  • 49
  • 81
0
votes
2 answers

Is it possible to add checkbox in button using gxt 2.5

My Class extends gxt button and I would like to add a checkBox in the button but there is no method for the addition of a component in button. import com.extjs.gxt.ui.client.widget.button.Button; import…
Divyesh Rupawala
  • 1,221
  • 8
  • 15
0
votes
1 answer

Ext GWT - Grid Paging with JSON, set my all records number to paging

I'm working with Ext GWT. I have a grid with paging and JSON. I don't understand, Where do i can set all records number in the paging config. My paging grid is wrong, bacause it doesn't know, how much records in the database's table. Thx String path…
user1485841
  • 31
  • 1
  • 6
0
votes
1 answer

How to keep selected text highlighted when activating a context menu in GXT? (EXT GWT 2.x)?

I am trying to find a way to keep selected text highlighted when a user activates a context menu (right-click menu) using Sencha's EXT GWT 2.x (though I'm fine with a 3.x solution if there is one). The use case: User is viewing content on the…
Bionic_Geek
  • 536
  • 4
  • 24
0
votes
2 answers

GWT: Dynamic UI rendering

i'm currently a developing a GWT application, where i want to render the UI dynamically according to user permissions. Say, in my application i have a list of products and the possibility to edit that list (add new products, remove etc.). I also…
dunni
  • 43,386
  • 10
  • 104
  • 99