Class GridUtil
java.lang.Object
com.logicaldoc.gui.common.client.util.GridUtil
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Listener to inject code at the end of a grid scroll -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
exportAsCSV
(String content) static void
exportCSV
(com.smartgwt.client.widgets.grid.ListGrid listGrid, boolean allFields) Exports into the CSV format the content of a ListGrid.static void
print
(com.smartgwt.client.widgets.grid.ListGrid listGrid) Prints a gridstatic void
scrollGrid
(com.smartgwt.client.widgets.grid.ListGrid listGrid, GridUtil.EndScrollListener listener) Scrolls the grid trying to display all the rec and fetch all the data
-
Constructor Details
-
GridUtil
public GridUtil()
-
-
Method Details
-
scrollGrid
public static void scrollGrid(com.smartgwt.client.widgets.grid.ListGrid listGrid, GridUtil.EndScrollListener listener) Scrolls the grid trying to display all the rec and fetch all the data- Parameters:
listGrid
- the grid to processlistener
- optional listener inoked at the end of the scroll
-
print
public static void print(com.smartgwt.client.widgets.grid.ListGrid listGrid) Prints a grid- Parameters:
listGrid
- Grid containing the data
-
exportCSV
public static void exportCSV(com.smartgwt.client.widgets.grid.ListGrid listGrid, boolean allFields) Exports into the CSV format the content of a ListGrid.- Parameters:
listGrid
- Grid containing the dataallFields
- True if all the fields(even if hidden) have to be extracted
-
exportAsCSV
-