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

Drag and Drop downlad from GXT grid to Desktop

I am using GXT for UI development. I have used HTML5 for Dragging file from Desktop to my application and upload it. But now i am having reverse requirement. I want to drag files from browser to desktop which will download the file to desktop. I…
vbjain
  • 547
  • 2
  • 7
  • 23
-1
votes
4 answers

looking for a good java/gwt/js library to create 'rotating bottle' animation

I am looking for a good Java/GWT/Smart GWT or Ext GWT/Javascript library that does the following in a web application- (1) Take an image of a bottle, and rotate it. (2) I should be able to specify angle of rotation, time taken to complete that…
Arvind
  • 6,404
  • 20
  • 94
  • 143
-1
votes
2 answers

GXT MessageBox - customize buttons

how can i customize the buttons in gxt MessageBox. so instead of Ok and cancel i can have different lables
Adi Mor
  • 2,145
  • 5
  • 25
  • 44
-1
votes
1 answer

GXT FillToolItem

The FillToolItem , fills the toolbar width, pushing any newly added items to the right. public FillToolItem() { getAriaSupport().setPresentation(true); } @Override protected void onRender(Element target, int index) { …
Adi Mor
  • 2,145
  • 5
  • 25
  • 44
-1
votes
2 answers

GXT rtl align button icon

I changed an existing project from gxt to gxt-trl. I did everything according to the instruction (changed the html files and resource) But now in all the buttons and menus, the icon goes over the text. i tried to…
Adi Mor
  • 2,145
  • 5
  • 25
  • 44
-1
votes
1 answer

How to use a method with SafeHtml param instead of String in UiBinder (XML)?

We're migrating our application from GXT 3 to GXT 4 (and also from GWT 2.5 to 2.8.2) and one of the things that changed is that lot of components' body/text/heading/etc. now have two separate setters. One accepts String param and the other one…
-1
votes
1 answer

Migrating GXT 2.x to GXT 3.x. What to do for multiselectcombo, models and checkboxlistview

After a long time, again i started GXT coding, upgrading old application with new versions of GXT & GWT. When i replaced gxt 3.x jar with 2.x, got so many errors, thought all are related to imports, but most of the panels, layouts, multiselectcombo,…
Rahman
  • 63
  • 1
  • 10
-1
votes
2 answers

putting two label beside each other in gwt

Code: RootPanel footer = RootPanel.get("footer"); footer.addStyleName(StyleNameGen.createName("mainWidgetFooterStyle")); footer.add(versionLabel); footer.add(expirationMessage); and it puts the versionLabel and thenexpirationMessage `below it.…
la2 la2
  • 21
  • 1
  • 5
-1
votes
1 answer

Which powerfull tools are used to create website and could GWT and GXT work ?

So I started working this year after finished studying last year. I have been exposed to so many things in the working environment. Suck as Maven, GWT and Hibernate. Now I got this side project in which I just need to create a simple website which…
SandMan
  • 555
  • 2
  • 6
  • 15
-1
votes
1 answer

SFTP in GXT between Windows and Tomcat

I am using Jsch for sftp function. I am encounting a problem that i cannot use sftp service if the application is deployed to tomcat. The sftp function works well when i testing by using eclipse GWT development mode. Here is the…
Jbisgood9999999
  • 253
  • 1
  • 5
  • 15
-1
votes
1 answer

In GWT how to remove column header partially

In GWT on every column header there are four options - sort ascending, descending, columns, filters. I want to display only filter option and hide all other options. To disable completely I can do column.setMenuDisabled(true). How do I disable…
-1
votes
1 answer

GXT paging grid next and previous page

I'm trying to implement a paging grid in GXT 3 (following the example here: http://docs.sencha.com/gxt-guides/3/ui/widgets/grid/loading/GridLoadingRpc.html) The example doesn't show on which event to update the state of the PagingLoadConfig object…
AfterWorkGuinness
  • 1,780
  • 4
  • 28
  • 47
-1
votes
1 answer

How to refresh Grid GWT after getting data from database_Now it keeps the Gird in the First call

I am new with GWT_GXT I use MVP(model-view-Presenter) In Presenter, i call RPC to get data From database. After that i get a List data -> I set it for view In view, code is below @Override public void setDeleteAllTest(List
thangdo
  • 21
  • 1
  • 6
-1
votes
1 answer

ColorMenu not closing after selection

I'm trying to use a TextButton with a ColorMenu as a color chooser. TextButton button = new TextButton("SelectColor"); ColorMenu cm = new ColorMenu(); button.setMenu(cm); add(new FieldLabel(button, "Color"));` When I click on the button, the…
MrTux
  • 32,350
  • 30
  • 109
  • 146
-1
votes
1 answer

JSON widget in GWT

I'm developing a GWT app.And to be clear , i'm totally new to GWT,Web development and stuffs.I have a requirement in my GWT app, to get a JSON input.I should provide a JSON editor kind of UI , so that the user can enter the JSON data.Please help me…
Karthik207
  • 493
  • 9
  • 27
1 2 3
83
84