Interface DataGrid.Resources
-
- All Superinterfaces:
ClientBundle
public static interface DataGrid.Resources extends ClientBundle
A ClientBundle that provides images for this widget.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.gwt.resources.client.ClientBundle
ClientBundle.Source
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageResource
dataGridLoading()
The loading indicator used while the table is waiting for data.ImageResource
dataGridSortAscending()
Icon used when a column is sorted in ascending order.ImageResource
dataGridSortDescending()
Icon used when a column is sorted in descending order.DataGrid.Style
dataGridStyle()
The styles used in this widget.
-
-
-
Method Detail
-
dataGridLoading
@Source("cellTableLoading.gif") @ImageOptions(flipRtl=true) ImageResource dataGridLoading()
The loading indicator used while the table is waiting for data.
-
dataGridSortAscending
@Source("sortAscending.png") @ImageOptions(flipRtl=true) ImageResource dataGridSortAscending()
Icon used when a column is sorted in ascending order.
-
dataGridSortDescending
@Source("sortDescending.png") @ImageOptions(flipRtl=true) ImageResource dataGridSortDescending()
Icon used when a column is sorted in descending order.
-
dataGridStyle
@Source("com/google/gwt/user/cellview/client/DataGrid.css") DataGrid.Style dataGridStyle()
The styles used in this widget.
-
-