List of usage examples for com.google.gwt.widgetideas.table.client PreloadedTable setPendingHTML
public void setPendingHTML(int row, int column, String html)
From source file:com.google.gwt.demos.bulkloadingtable.client.BulkLoadingTableDemo.java
License:Apache License
private void usingPreloadedTableAPI(PreloadedTable table) { for (int i = 0; i < numRows; i++) { for (int j = 0; j < numColumns; j++) { table.setPendingHTML(i, j, "cell " + i + ", " + j); }/*from www .j a va 2 s . c o m*/ } }