Search Type: Posts; User: jmhwhite2001
Search: Search took 0.03 seconds.
-
8 Apr 2010 5:52 AM
- Replies
- 0
- Views
- 649
Ok, I'm noticing some weird behaviors with Aggregate Row and IE7. The following works perfect in Host Mode using GWT 2.0.3 and GXT 2.1.1. with IE 7 and Firefox 3.5.9. Here's the basic. I have a...
-
30 Mar 2010 6:26 AM
- Replies
- 11
- Views
- 4,054
How about:
grid.addListener(Events.CellClick, new Listener<GridEvent>() {
public void handleEvent(GridEvent be) { -
30 Mar 2010 6:20 AM
- Replies
- 2
- Views
- 1,343
Download the GXT release and it's in the samples directory. Now, some of those samples rely on "test" classes that resides in the actual src directory. So, you might be looking in both spots.
-
25 Mar 2010 10:46 AM
Jump to post Thread: Toolbar Icons not rendering by jmhwhite2001
- Replies
- 9
- Views
- 1,382
Since you are not using the paging toolbar associated with the grid, but creating your own toolbar, then I don't know...but, here's how I make my icons:
// I add this button to the paging... -
25 Mar 2010 10:26 AM
Jump to post Thread: Toolbar Icons not rendering by jmhwhite2001
- Replies
- 9
- Views
- 1,382
I'm not following exactly what you're trying to do. If you're trying to add buttons to the toolbar, then I can help you with that. Or, do you want to refresh those icons associated with the paging...
-
25 Mar 2010 10:23 AM
Jump to post Thread: Grid: why empty rows? by jmhwhite2001
- Replies
- 18
- Views
- 2,860
public class AircraftStatusBoardRow extends BaseTreeModel implements Serializable {
/**
* Auto-generated serial ID value for the implementation
* of serializable.
*/
... -
25 Mar 2010 10:16 AM
Jump to post Thread: Toolbar Icons not rendering by jmhwhite2001
- Replies
- 9
- Views
- 1,382
So, you have two buttons on a toolbar. Do you want to dynamically change one icon on the button?
-
25 Mar 2010 10:14 AM
Jump to post Thread: Grid ContextMenu help by jmhwhite2001
- Replies
- 1
- Views
- 824
The browser context menu is specifically for the browser. If you want the same functionality, then you have to create it.
I also created, and removed a context menu on the grid. It was a pain if... -
25 Mar 2010 10:10 AM
Jump to post Thread: export grid pdf by jmhwhite2001
- Replies
- 2
- Views
- 1,114
http://www.extjs.com/forum/showthread.php?t=95279
-
25 Mar 2010 10:08 AM
- Replies
- 2
- Views
- 1,140
final TabPanel tabs = new TabPanel();
tabs.setResizeTabs(true);
tabs.setTabScroll(true);
tabs.setPlain(true);
tabs.setTabMargin(2);
tabs.setWidth(1000);... -
25 Mar 2010 9:49 AM
- Replies
- 0
- Views
- 489
Ok all. Here's the code I have:
ChartModel cm = new ChartModel("Monthly Flight Information",
"font-size: 14px; font-family: Verdana; text-align: center;");... -
25 Mar 2010 8:01 AM
- Replies
- 3
- Views
- 6,723
Forgot the GridHeader just in case folks wanted to know what it looks like:
public class GridHeader implements Serializable {
private String headerName;
private String headerID;
... -
25 Mar 2010 7:58 AM
- Replies
- 3
- Views
- 6,723
This post will only concentrate on exporting a grid data to excel (I use jExcelAPI). You can use this to export to pdf. I just wanted to share some example code with folks especially since many...
-
18 Mar 2010 9:33 AM
Jump to post Thread: CSS / Button problem by jmhwhite2001
- Replies
- 15
- Views
- 4,686
First, what is the style for? Icon declaration??
I use:
Button saveButton = new Button();
saveButton.setIconStyle("save-icon"); -
18 Mar 2010 7:47 AM
- Replies
- 4
- Views
- 1,099
This issue is related to using the handleEvent method. In hosted mode, everything works. You must use componentSelected.
// Use this
public void componentSelected(ComponentEvent ce) {
... -
11 Mar 2010 10:10 AM
- Replies
- 4
- Views
- 1,099
Here's some other code that doesn't work:
ToolBar customToolBar = new ToolBar();
customToolBar.setSpacing(2);
customToolBar.setBorders(false);
Button saveButton =... -
11 Mar 2010 9:44 AM
- Replies
- 4
- Views
- 1,099
Ok, I'm straight up having issues getting buttons to render any action. Here's what I have now:
ToolBar customToolBar = new ToolBar();
customToolBar.setSpacing(2); ... -
11 Mar 2010 9:30 AM
- Replies
- 3
- Views
- 1,069
Yeah, I posted about this already. I tried to add a button to the pagination toolbar, which already worked before the upgrade to GWT/GXT 2+. I even added a button to a toolbar, which became the...
-
9 Mar 2010 6:23 AM
- Replies
- 4
- Views
- 1,099
Ok everyone. This worked before the upgrade to version 2. Actually, some things changed regarding how buttons are added, but here goes.
I add three buttons to the pagination toolbar. Here's a... -
3 Mar 2010 5:22 AM
Jump to post Thread: File download ? by jmhwhite2001
- Replies
- 2
- Views
- 1,190
I exported my grid's data to Excel and had to use an external servlet. I think the problem is there is no way to generate the "Save As/Open" dialog via GXT/GWT. I think the servlet is needed to do...
-
25 Feb 2010 10:57 AM
- Replies
- 3
- Views
- 1,271
I had the same type problem. Make sure you're using FitLayout and not "AnchorLayout" definitely.
-
25 Feb 2010 10:30 AM
- Replies
- 2
- Views
- 802
As the title states, thanks and it worked.
-
25 Feb 2010 9:57 AM
- Replies
- 2
- Views
- 802
Ok, I just ran into this issue and I'm not sure how to work around this. I'd like to get the full number of results in my grid, ignoring pagination.
So, my page size is 20 and I have 21 results. ... -
18 Feb 2010 11:34 AM
- Replies
- 4
- Views
- 3,095
I'm having the same issue. I want to pass an object from a GXT app to a servlet and have it read. The object is of the type I've specified.
Thanks! -
11 Feb 2010 12:02 PM
- Replies
- 1
- Views
- 559
After search through HTML Container posts, I got an idea and it worked. I originally had an AnchorLayout in the tab and went to a Fit Layout and it seems to work now.
Results 1 to 25 of 75
