Search Type: Posts; User: rherwig
Search: Search took 0.02 seconds.
-
3 Jul 2012 8:04 AM
- Replies
- 2
- Views
- 1,606
Did you ever find a solution?
I was able to disable select all :
final CheckBoxSelectionModel<myModel> detailsCheckBoxSelectionModel = new CheckBoxSelectionModel<myModel>() {
@Override... -
27 Jun 2012 8:34 AM
- Replies
- 4
- Views
- 722
You'll have to get the actual Filter for that column using either:
Filter filter = ((GridFilters) plugin).getFilter("dataIndex");
or
List<Filter> filterList = ((GridFilters)... -
27 Jun 2012 7:27 AM
- Replies
- 4
- Views
- 722
Check out the following GridFilters methods:
List<ComponentPlugin> pluginList = grid.getPlugins();
for (ComponentPlugin plugin : pluginList) {
if (plugin instanceof GridFilters) {
... -
27 Jun 2012 7:21 AM
- Replies
- 2
- Views
- 724
For enquiring minds: Less is More
I was setting too many properties for all the containers and layouts. Replaced many of the ContentPanels with LayoutContainers and only setting the layout =... -
26 Jun 2012 3:42 PM
- Replies
- 0
- Views
- 378
When I define a NumberField and call setPropertyEditorType() using java.lang.Short.class the RowEditor ALWAYS marks the field as modified. However (comma) if I set it to Integer.class it works fine....
-
29 Mar 2012 1:46 PM
- Replies
- 1
- Views
- 715
Did you ever figure this one out??
I'm attempting to do the same thing. I was not able to simply @Override the onFieldKeyUp() method since the TextField<String> field and DelayTask updateTask are... -
12 Mar 2012 2:28 PM
- Replies
- 2
- Views
- 724
PS
If I catch the ListLoader LoadEvent and then set the column width it works however that seems to be a bit sloppy. There is a delay between the time the grid is rendered and the data appears. I... -
12 Mar 2012 2:20 PM
- Replies
- 2
- Views
- 724
I followed the example code to create a grid with a horizontal scrollbar however, since I'm using a RPC call to get the data, the grid columns are all squashed together so that they "fit" inside the...
-
7 Feb 2012 9:55 AM
- Replies
- 1
- Views
- 740
zzzzzz..... :((
nevermind -
27 Dec 2011 2:14 PM
- Replies
- 1
- Views
- 740
I've been attempting to implement a GridView with a RowEditor & CheckBoxSelectionModel. I want to use the RowEditor to allow the user to modify the data and the CheckBoxSelectionModel to allow the...
Results 1 to 10 of 10
