Search Type: Posts; User: gaspo100
Search: Search took 0.01 seconds.
-
10 Jul 2011 11:56 PM
- Replies
- 18
- Views
- 8,345
I've noticed that DP2 is available now with UI binder.
Are there any examples on how to use UI binder with GXT 3?
Thanks. -
24 May 2011 6:04 PM
Jump to post Thread: ThemeSelector by gaspo100
- Replies
- 6
- Views
- 2,234
Blue and gray themes are built in, so no configuration required for those.
To use ThemeManager put this into your project gwt.xml
<inherits name="com.extjs.gxt.themes.Themes"/>
To use... -
8 May 2011 5:21 PM
Jump to post Thread: Auto Reload Client Page by gaspo100
- Replies
- 7
- Views
- 2,340
One way to do it is like this:
On the server create a table in your database that will store current sessions (user and session ID)
When user successfully logs in store session ID and user... -
27 Apr 2011 8:07 PM
- Replies
- 1
- Views
- 1,871
I use Events.CellMouseUp
List<ColumnConfig> configs = new ArrayList<ColumnConfig>();
configs.add(new ColumnConfig("Column0", "Text Col 0", 100));
configs.add(new ColumnConfig("Column1",... -
29 Nov 2010 6:50 AM
- Replies
- 0
- Views
- 588
GXT 2.2.1:
I had to put this into xtheme-slate.css for LabelToolItem to render white text on the Toolbar when Slate theme is selected. The black text on the dark toolbar is hard to read.
... -
17 Jun 2010 8:21 PM
- Replies
- 8
- Views
- 1,846
Here is what I do to capture exceptions:
// RPC proxy
RpcProxy<Contacts> proxy = new RpcProxy<Contacts>() {
@Override
protected void load(Object loadConfig,... -
29 Apr 2010 4:51 AM
- Replies
- 2
- Views
- 1,265
Thanks Sven. Setting HideMode to OFFSETS on TabItems helped.
However, in FF the flash component is still re-initialized. All other browsers seem to work fine with flash.
Is there a specific... -
26 Apr 2010 7:07 PM
- Replies
- 2
- Views
- 1,265
I have a TabPanel showing help pages in multiple tabs.
The problem I have is then when flipping between the tabs the content of each tab is refreshed and thus loosing the previous scroll position.... -
12 Feb 2010 1:42 AM
Jump to post Thread: SpinnerField by gaspo100
- Replies
- 16
- Views
- 13,083
No, I add it into ContentPanel with AbsoluteLayout.
-
10 Feb 2010 3:48 AM
Jump to post Thread: SpinnerField by gaspo100
- Replies
- 16
- Views
- 13,083
Thanks for the nice component.
It work fine in my program, however, one thing I could not get working is to respond to some of the inherited events. For example Events.Change or Events.TriggerClick.... -
2 Feb 2010 7:48 PM
Jump to post Thread: calling function by gaspo100
- Replies
- 2
- Views
- 761
I would do it like this:
private LabelField exportReport;
exportReport = new LabelField("Export");
resultPanel.getHeader().addTool(exportReport);
exportReport.addStyleName("html-link");... -
2 Feb 2010 6:41 PM
- Replies
- 3
- Views
- 1,715
I have a reasonably complex ContentPanel with about 50 widgets on it.
When the panel is opened via dialog box then there is no problem. Firefox renders the widgets off-screen and then shows the... -
13 Dec 2009 9:07 PM
Jump to post Thread: Calendar Widget by gaspo100
- Replies
- 1
- Views
- 1,734
I use gwt-cal. It is GWT based but it integrates nicely with GXT, there three visual themes to choose from. They are working on adding the month view and some drag-drop features.
Code sample of... -
29 Sep 2009 12:55 AM
- Replies
- 3
- Views
- 2,147
Just an update on this. The latest build of GWT Designer (including GXT part) now works under Linux.
-
19 Sep 2009 3:45 AM
- Replies
- 3
- Views
- 2,147
I'm trying to evaluate Ext GWT (GXT) Designer from Instantiations on Linux (Ubuntu 9.04) and I'm having problem displaying the GUI.
The GUI comes up with the strange exception:
(Exception... -
1 Jul 2009 11:30 PM
- Replies
- 1
- Views
- 1,324
Still doesn't run with rc2.
Got anyone samples.war running? -
25 Jun 2009 5:43 PM
- Replies
- 1
- Views
- 1,324
I'm having problem deploying samples.war on my home jetty 6 server.
When I try to access samples/explorer.html page I get SERVICE_UNAVAILABLE error page.
Jetty log file shows this exception:
... -
17 Jun 2009 4:22 PM
Jump to post Thread: Refresh my page by gaspo100
- Replies
- 14
- Views
- 5,902
Thanks for the tip with onbeforeunload.
I could not find Ext.EventManager.on equivalent in GXT so I put this into my application's html page:
<script type="text/javascript"... -
16 Jun 2009 6:39 AM
- Replies
- 0
- Views
- 1,856
Does GXT 2.0 supports default button on the forms and dialog boxes?
I'm looking for the same behavior as Windows dialogs have: you set one button as default and then you can press RETURN key on any... -
16 Jun 2009 6:29 AM
Jump to post Thread: Refresh my page by gaspo100
- Replies
- 14
- Views
- 5,902
On another note, is there a way to prevent the page refresh when F5 is clicked? Currently when user presses F5 in the browser the whole application reloads and the user gets thrown back to the login...
Results 1 to 20 of 20
