List of usage examples for com.google.gwt.widgetideas.table.client.overrides Grid resize
public void resize(int rows, int columns)
From source file:com.google.gwt.demos.bulkloadingtable.client.BulkLoadingTableDemo.java
License:Apache License
private void usingGridAPI(Grid table) { table.resize(numRows, numColumns); for (int i = 0; i < numRows; i++) { for (int j = 0; j < numColumns; j++) { table.setHTML(i, j, "cell " + i + ", " + j); }/*from w ww. j av a 2s . c o m*/ } }