public static interface Grid.DataSource
public String[][] getItems(int startIndex, int count)
{
if (activeRS != null)
{
activeRS.absolute(startIndex);
return activeRS.getStrings(count);
}
return null;
}
See the AddressBook sample on Litebase.Grid.lastStartingRow| Modifier and Type | Method and Description |
|---|---|
java.lang.String[][] |
getItems(int startingRow,
int count)
Must return a matrix of items that will be displayed at the grid.
|