Ext GWT, also known as GXT , is a dual licensed component framework that seeks to provide similar functionality to ExtJs for Google Web Toolkit (GWT) applications.

learn more… | top users | synonyms (1)

0
votes
0answers
9 views

GXT How to Get Map property of BeanModel

I have a DTO, which looks a bit like this: class Response { Long id; Locale locale; Map<Integer,QuestionResponse> questionResponses=new HashMap<Integer,QuestionResponse>(); ... } ...
1
vote
1answer
49 views

Convert html+css+js to PDF

I want to create something like this (code is here): in pdf format. I'm using google charts and regarding to this forum converting chart to pdf is impossible. I've already tryied iText+XMLWorker, ...
0
votes
0answers
16 views

Styling In HorizontalPanel

I want to customize showing styles of my Horizontal Widget. I have three widgets . Two buttons and one checkbox . I want to show two butttons are in center of Horizontal panel and checkbox is at right ...
0
votes
0answers
13 views

How to Integrating Sench EXT GWT in netBean for JSF?

I am new for EXT GWT. please help me for installing(plugin) EXT GWT in netbean for JSF2.1 and which file are use foe it? please describe all step of plugin of extGWT. and give me some references.
0
votes
0answers
8 views

Ext GWT - cancel all client-side record of a transaction, such that any response from the server will be ignored

Is there a way in Ext-GWT to ignore any response from the server(that is avoid execution of callbacks)? Something similar to com.smartgwt.client.rpc.RPCManager.clearTransaction() My scenario is, ...
0
votes
1answer
27 views

setup gxt project for tomcat 7 deployment

I've made .war file from war folder of my project and copied it to tomcat's ROOT directory. Then I start tomcat and get either GWT module 'hellogxt' may need to be (re)compiled or 404 error. What I am ...
1
vote
1answer
82 views

CSS is not working in GXT

I am in learning phase of GWT GXT, I my project some of the css are working fine , but some are showing me a strange behavior . for login button. logonBtn = new TextButton("Connect"); ...
4
votes
6answers
166 views

How to put the Icons In the Center of the button in GXT

Hi i am working on GXT i have a button with an Icon. I want to put the Icon in center. Currently it looks like this. the icon of the button is in left (because of IconAlign.LEFT). I want it in ...
1
vote
1answer
154 views

java.lang.NoClassDefFoundError: com/google/gwt/core/ext/Generator

I am trying to add GXT in my project. For this i followed all the steps given in setting up your first ext gwt project in eclipse My Java buid path is like this My xml file is <?xml ...
0
votes
1answer
49 views

Direction and Size of Placeholder in SmartGWT Mobile

I have a Text Item added to a dynamic form in smart GWT mobile (as shown in the image). On the right there is the place holder, when I start typing it starts from far end. I want it to start typing ...
0
votes
0answers
61 views

Open source Ext-GWT (GXT) Admin Site

I've seen a lot of templates for a open source "admin" site with Twitter Bootstrap. However I haven't found any open source project for an Admin site that is built with Sencha GXT. Are there any?
0
votes
2answers
71 views

Remove resize cursor from Window component in GXT

The Window component that I use has Resizable flag set to false but the resize cursor on the edges still appear. Is there any way to change the cursor to normal ? I am using Sencha GXT 3, with ...
0
votes
0answers
46 views

ext gwt sring security 3.0.5 login and logout page

I am using spring security and ext gwt. I would like to use my ext gwt login componet in stead of spring security default login and logout pages. since ext gwt uses ajax calls it is deficult to detect ...
0
votes
0answers
37 views

How to draw lines on Openplayer map GXT tutorials?

I am developing GWT application, where I am using GXT 2.2.5 UI library for creating widgets, also I embedded google map using Openplayer. Now I want to draw GEO Zones on the Map, which should containt ...
0
votes
1answer
51 views

ExtGWT Resizing TabPanel (TabItem) with ChartsVizualization an ChartsTable

The problem is on the drawing by click or resizing browser. I have TabPanel placed with RowData, two TabItems with Chart (Google Vizualization) on one and Table with the same Data on the next. I ...
0
votes
2answers
81 views

Access values on widgets and send to server

I have an interface created from GXT 2.2.5 library, now I need to get user entered values from TextField and send it to server. How can i get this user entered values from textfield? Here the sample ...
0
votes
1answer
62 views

Access values from widgets in GXT

I am new to Sencha GXT framework for GWT, how can i get values from GXT generated TextFields in order to send it to server? import com.extjs.gxt.ui.client.widget.layout.FlowLayout; import ...
0
votes
1answer
169 views

How to set width of the FormPanel in the GXT? (setWidth method crashes the application). And how to enable Scroll?

I'm using GXT 2.2.4. I try to set width of my custom, but setWidth method crases my application. Here is form code: public class CustomForm extends FormPanel { public CustomForm () { ...
1
vote
3answers
153 views

Minimizing compile size of a GWT application

I have this admin site that is based on GWT and Sencha Ext GWT 2 that I am having problem with, it loads very slowly, using Firebug I can see this 4DDF7CE1FD8584654846E8ADA9D9DECB.cache.html ...
0
votes
0answers
160 views

Data wont get displayed in GXT 3 Treegrid

I just started using gxt 3 and I am stuck at displaying my objects in my treegrid. Actually the load handler is there to make the items from the request get put into the treegrid. Well, I am able to ...
0
votes
1answer
187 views

GWT Grid editing Tab Order

I use GXT (sencha version 3.0.1) I have grid like this: When I select second Column and try to move next Column use Tab Key to move and its works fine, but when I select any value from combo and ...
0
votes
0answers
112 views

Getting selected values from Grid numberfield Render

I use a numberfield render to implements a cellrender for a column in grid. the maxvalue could be selected of the numberfield depends on the value "quantity max" of each row. How can I get and ...
0
votes
0answers
158 views

Debugging / reproducing web app error on ios 6 Safari

I have a web app written using ext-gwt (so runs entirely using JavaScript, AJAX etc). I've tested it in all common modern browsers and it's fine, except when I test on my iPhone 5 running IOS 6.0.1, ...
1
vote
2answers
235 views

Ext-GWT 3.0 Grid Mouse Events

I have a grid which gets populated from the database and works fine. Now I want to add a mouseover event to this grid and display a tooltip text which shows all the column values in multi-line fashion ...
3
votes
1answer
127 views

Color a Grid by similar column values

With Ext GWT 2, how do I color a Grid by similar column values?
1
vote
2answers
460 views

Set default Tab selected for Tab panel for GXT

I have a application written in GXT. There are three tabs such as: One, Two, Three for example. For each tab, it is also a TabPanel, under each of One, Two, Three there are A, B and C. One(A, B, C), ...
0
votes
3answers
403 views

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); ...
0
votes
0answers
59 views

Dynamically change the value of one column in the table GXT3

I have a grid with several columns. How to make that the data was updated 1 time per second in a single column, and not the entire table
0
votes
1answer
150 views

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 ...
0
votes
2answers
179 views

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<String, String> data = new ...
0
votes
1answer
160 views

Using XTemplate with Grid

I'm trying to use XTemplate to display Row information of a Grid: List<User> users = new ArrayList<User>(); users.add(new User("John", "Smith")); users.add(new User("Bob", ...
0
votes
1answer
185 views

How to change the font in the grid GXT3

Sorry for the simple question, how to change the font in the grid?
1
vote
0answers
92 views

Dynamic treegrid context menus

Is there a way using the treegrid in gwt-ext to have different context menus for different rows? For example I would like my leaf rows to have different menu options then my non-leaf rows, or at ...
2
votes
1answer
176 views

How to work with StateManager gxt 3

I'm trying to get the value of CookieProvider the following method: public void getValue(){ StateManager.get().get("idReg", String.class, new Callback<String, Throwable>() { ...
1
vote
1answer
258 views

GWT Properties file configuration

I am new to GWT, and facing one problem. How we have .properties file for initial configuration at startup. I want to create one in GWT App. Also, GWT has client and server package. I want to setup ...
3
votes
1answer
1k views

Unable to find 'com/extjs/gxt/ui/GXT.gwt.xml' in GXT sample application

I'm trying to run a sample application using GXT (ExtJS + GWT) as described in the tutorial at http://www.sencha.com/learn/setting-up-your-first-ext-gwt-project-in-eclipse When I try to run the ...
1
vote
1answer
1k views

Getting com.google.gwt.user.client.rpc.StatusCodeException: 0 in GWT

I sometimes/often get this Exception in GWT but don't know why: SEVERE: com.google.gwt.user.client.rpc.StatusCodeException: 0 java.lang.RuntimeException: ...
1
vote
0answers
137 views

Remove Shadow which appears on expand of SimpleComboBox ext gwt

I want to remove the shadow which appears on expand on SimpleComboBox. I get the shadow as attached image. below is my code private SimpleComboBox<String> getSimpleComboBox(List<String> ...
0
votes
1answer
359 views

Get selected item text in a ComboBox

How to get the currently selected item text (String) in a ComboBox? I am using Ext GWT version 2.2.3 btw. I have tried getValueField and getSelectedText but I am getting null for both functions.
0
votes
0answers
92 views

How to make a widget fills all the available space in an HeaderGroupConfig component?

Does anyone knows how to make a widget fills automatically all the available space in a HeaderGroupConfig component with GXT3 ? Here is my problem : I have a grid in which I have implemented a ...
0
votes
1answer
394 views

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 ...
1
vote
0answers
62 views

Migrate ModelData from Ext GWT 2 to 3

I have this legacy Ext GWT 2 code that I need to migrate with Ext GWT 3: for (ModelData data: store.getRootItems()) { Element voiceElement = DOM.createDiv(); Element ...
0
votes
0answers
482 views

CheckBoxListViev check few checkbox gwt ext

I am new to GWT and using GWT EXT. I want to create MultiSelectComboBox and I am doing that using the CheckBoxListViewCreator class and it is working perfectly fine. I am calling class using the ...
0
votes
2answers
581 views

GXT3 TextButton styling

How can I change the styling/appearance of a TextButton in EXT GWT 3 ? I am mostly interested in the background color. Thank you, Horatiu
0
votes
1answer
176 views

GWT EXT Grid containing Checkbox with dynamic Column to add?

I am very new to GWT and I have to make GWT Grid like the image shown. I have no clue on how to do this with corresponding Update and Delete action against each row. Here, the number of columns ie ...
0
votes
2answers
194 views

EXT GWT BaseModel needs to have DTO reference?

I am very new to GWT. I am using ext-gwt widgets. I found many places in my office code containing like, class A extends BaseModel{ private UserAccountDetailsDto userAccountDetailsDto = null; ...
0
votes
1answer
114 views

how to open new window with widget in it?

I am using GWT/ExtGWT. I have a little problem... I have an Hyperlink in my web page and when the user clicks on this hyperlink, a new browser window should be opened containing a widget (a widget ...
4
votes
3answers
226 views

java script framework for client [closed]

My team consists of more java guys and limited experience with java scripts. I know this question have been asked several times, but just to get my facts right, I need to clarify few things as my ...
0
votes
0answers
179 views

Handling ext-gwt popups using selenium web driver

I have a web site which is developed using ext-gwt. There I have a button where when i clicked it a ext-gwt pop up window appear. In that pop-up window i have to enter some data into text field. The ...
1
vote
0answers
120 views

GxtRtl Html and HtmlContainer flips input html content

I use Gxt-2.2.5-Rtl (http://code.google.com/p/gxt-rtl/) and try to show html content through HtmlContainer's setUrl() method. But unfortunately the result is flipped version of my expected output. For ...

1 2 3 4 5