Search Type: Posts; User: dpope22
Search: Search took 0.04 seconds.
-
24 Mar 2010 6:27 AM
Jump to post Thread: Nested Grid by dpope22
- Replies
- 10
- Views
- 4,680
Have you looked at the TreeGrid sample?
http://www.extjs.com/examples/pages/treegrid/basic.html
The grid in your example is similar to GXT's TreeGrid. -
23 Mar 2010 6:33 AM
Jump to post Thread: Nested Grid by dpope22
- Replies
- 10
- Views
- 4,680
You can use the Grouping Grid http://www.extjs.com/examples/pages/grid/grouping.html
I ended up using this heavily modified for my use case. If you have a lot of data being displayed and are... -
15 Mar 2010 10:50 AM
Jump to post Thread: Layout problem in Firefox only by dpope22
- Replies
- 7
- Views
- 1,535
You still need to include gxt-all.css even if you are not using any custom css.
-
8 Mar 2010 12:37 PM
Jump to post Thread: Ext-Designer & GXT by dpope22
- Replies
- 6
- Views
- 2,440
GXT is Java code. The Designer will not generate GXT(Java) code in the first version.
-
22 Feb 2010 7:34 AM
Jump to post Thread: Ext-Designer & GXT by dpope22
- Replies
- 6
- Views
- 2,440
I recall reading one of the threads on the Designer that said it would be able to generate Java code - don't know if that was GXT or something else....
-
17 Feb 2010 10:42 AM
Jump to post Thread: GXT Real Example Needed by dpope22
- Replies
- 8
- Views
- 4,894
In regard to implementing a Player-Team object model on the client, I would create View object that contained the information that will be displayhed on the client - such as TeamView which would...
-
11 Dec 2009 9:55 AM
Jump to post Thread: Low performance grid by dpope22
- Replies
- 12
- Views
- 2,743
BufferView has a couple of restrictions that the GridView does not. It requires a constant height for all rows in your grid, and according to the API, it doesnt allow for expanding rows. I'm using...
-
8 Dec 2009 7:24 AM
Jump to post Thread: Low performance grid by dpope22
- Replies
- 12
- Views
- 2,743
You can try to set the View of your grid to a BufferedView. This view will only render("paint") the rows that are visible.
-
14 Oct 2009 8:49 AM
- Replies
- 1
- Views
- 3,147
I'm seeing the same thing. Any updates to this?
-
5 Oct 2009 11:07 AM
- Replies
- 5
- Views
- 1,205
I have the same issue. I have the need for some of the items in the tree to have highlighting using css. Previously, this was done by applying the css to the individual TreeItems. Is there a way...
-
25 Sep 2009 6:27 AM
- Replies
- 19
- Views
- 5,654
Looks like an infinite loop if onModuleLoad() is called when the class is constructed. Either way, your class doesnt have anything in it. TextGXTApp is an empty class (no widgets in it, nothing to...
-
23 Sep 2009 8:33 AM
- Replies
- 19
- Views
- 5,654
Try to get up and running with just GWT first. Here's their getting started guide:
http://code.google.com/webtoolkit/gettingstarted.html
Once you get that working, you can add in GXT to the mix. -
23 Sep 2009 7:43 AM
- Replies
- 19
- Views
- 5,654
This sample refers to another RIA library, not GXT. They have similar names and it can be confusing at first, but I'm pretty sure that the two aren't compatible. You'll either have to use GXT...
-
22 Sep 2009 8:35 AM
- Replies
- 19
- Views
- 5,654
Can you post the code you are trying to run?
-
22 Sep 2009 7:36 AM
- Replies
- 19
- Views
- 5,654
I'm assuming you are using GWT's hosted mode when you say the mini google browser. If so, there should be another window that pops up when you run your application titled 'Google Web Toolkit...
-
21 Sep 2009 7:10 AM
- Replies
- 19
- Views
- 5,654
What sort of problems are you running into? What errors are you seeing?
-
3 Aug 2009 12:38 PM
Jump to post Thread: Using GXT by dpope22
- Replies
- 6
- Views
- 1,989
Did you include the ext css file in your GWT module?
<stylesheet src='css/ext-all.css'/> -
27 May 2009 9:47 AM
- Replies
- 14
- Views
- 7,912
What is the CSS style that disabled text selection? I see the -moz-user-select style is set to none, but doesn't this only apply to Mozilla? What about IE?
-
5 May 2009 12:22 PM
Jump to post Thread: Paged Grid w/ local sorting by dpope22
- Replies
- 1
- Views
- 1,926
I'm asuming you are using the BasePagingLoader to retrieve your data? If thats the case, it will return to the client only the current page of data, so your local sorting is only sorting on that...
-
22 Apr 2009 7:36 AM
Jump to post Thread: GXT Designer by dpope22
- Replies
- 1
- Views
- 1,797
Are there any plans in the pipeline to create a GXT Designer, similar to the EXT designer? maybe as an Eclipse plugin?
-
16 Apr 2009 4:03 PM
Jump to post Thread: GXT 2.0 "FAST_TREE_ITEM_ID" ? by dpope22
- Replies
- 2
- Views
- 1,863
It's a faster rendering version of the tree item widget. To accomplish this, the fancy CSS mouse-overs and rounded borders were removed since they added to the rendering time. I think the DOM...
-
15 Apr 2009 8:13 AM
- Replies
- 4
- Views
- 1,102
Yes, use the GWT Timer class that hides or removes the layout container when the timer expires.
-
7 Apr 2009 11:17 AM
Jump to post Thread: Hyperlink on grid by dpope22
- Replies
- 1
- Views
- 1,221
In your BaseModelData class, for whatever column you want to add the link to, set that field to a string data type. Insert your html into that field.
-
2 Apr 2009 12:21 PM
Jump to post Thread: Grid with grouping and paging by dpope22
- Replies
- 2
- Views
- 1,120
I'm trying to implement a solution which contains grouping and paging in a single grid. I've taken a couple of approaches already and keep coming up with issues which prevent it from working...
-
23 Mar 2009 8:15 AM
- Replies
- 14
- Views
- 7,912
Is there a way to select text in a grid row? More specifically, highlighting text within a row, right-clicking and copying.
Results 1 to 25 of 35
