本文整理汇总了Java中com.google.gwt.gen2.table.client.PagingScrollTable类的典型用法代码示例。如果您正苦于以下问题:Java PagingScrollTable类的具体用法?Java PagingScrollTable怎么用?Java PagingScrollTable使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PagingScrollTable类属于com.google.gwt.gen2.table.client包,在下文中一共展示了PagingScrollTable类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createScrollTable
import com.google.gwt.gen2.table.client.PagingScrollTable; //导入依赖的package包/类
protected PagingScrollTable<PropertiesDTO> createScrollTable() {
// add it to cached table model
cachedTableModel = createCachedTableModel(tableModel);
// create the table definition
TableDefinition<PropertiesDTO> tableDef = createTableDefinition();
// create the paging scroll table
PagingScrollTable<PropertiesDTO> pagingScrollTable = new PagingScrollTable<PropertiesDTO>(cachedTableModel,
tableDef);
pagingScrollTable.setPageSize(getPageSize());
pagingScrollTable.setEmptyTableWidget(new HTML(PropertyOptions.NO_SEARCH_RESULTS_STR));
pagingScrollTable.getDataTable().setSelectionPolicy(SelectionPolicy.ONE_ROW);
// setup the bulk renderer
FixedWidthGridBulkRenderer<PropertiesDTO> bulkRenderer = new FixedWidthGridBulkRenderer<PropertiesDTO>(
pagingScrollTable.getDataTable(), pagingScrollTable);
pagingScrollTable.setBulkRenderer(bulkRenderer);
// setup the formatting
pagingScrollTable.setCellPadding(3);
pagingScrollTable.setCellSpacing(0);
pagingScrollTable.setResizePolicy(ScrollTable.ResizePolicy.FILL_WIDTH);
pagingScrollTable.setSortPolicy(SortPolicy.SINGLE_CELL);
pagingScrollTable.setScrollPolicy(ScrollPolicy.DISABLED);
return pagingScrollTable;
}
示例2: createScrollTable
import com.google.gwt.gen2.table.client.PagingScrollTable; //导入依赖的package包/类
protected PagingScrollTable<List<PropertiesDTO>> createScrollTable() {
// add it to cached table model
cachedTableModel = createCachedTableModel(tableModel);
// create the table definition
TableDefinition<List<PropertiesDTO>> tableDef = createTableDefinition();
// create the paging scroll table
PagingScrollTable<List<PropertiesDTO>> pagingScrollTable = new PagingScrollTable<List<PropertiesDTO>>(
cachedTableModel, tableDef);
pagingScrollTable.setPageSize(getPageSize());
pagingScrollTable.setEmptyTableWidget(new HTML("There is no data to display"));
pagingScrollTable.getDataTable().setSelectionPolicy(SelectionPolicy.ONE_ROW);
// setup the bulk renderer
FixedWidthGridBulkRenderer<List<PropertiesDTO>> bulkRenderer = new FixedWidthGridBulkRenderer<List<PropertiesDTO>>(
pagingScrollTable.getDataTable(), pagingScrollTable);
pagingScrollTable.setBulkRenderer(bulkRenderer);
// setup the formatting
pagingScrollTable.setCellPadding(3);
pagingScrollTable.setCellSpacing(0);
pagingScrollTable.setResizePolicy(ScrollTable.ResizePolicy.FILL_WIDTH);
pagingScrollTable.setSortPolicy(SortPolicy.SINGLE_CELL);
pagingScrollTable.setScrollPolicy(ScrollPolicy.DISABLED);
return pagingScrollTable;
}
示例3: getPagingScrollTable
import com.google.gwt.gen2.table.client.PagingScrollTable; //导入依赖的package包/类
/**
* @return the {@link com.google.gwt.gen2.table.client.PagingScrollTable}.
*/
public PagingScrollTable<?> getPagingScrollTable() {
return table;
}
示例4: getPagingScrollTable
import com.google.gwt.gen2.table.client.PagingScrollTable; //导入依赖的package包/类
/**
* @return the {@link PagingScrollTable}.
*/
public PagingScrollTable<?> getPagingScrollTable() {
return table;
}
示例5: PagingPanel
import com.google.gwt.gen2.table.client.PagingScrollTable; //导入依赖的package包/类
/**
* Constructor.
*
* @param table the table being ad
*/
public PagingPanel(PagingScrollTable<?> table) {
this(table, GWT.<PagingOptions.PagingOptionsImages>create(PagingOptions.PagingOptionsImages.class));
}
示例6: QPagingOptions
import com.google.gwt.gen2.table.client.PagingScrollTable; //导入依赖的package包/类
/**
* Constructor.
*
* @param table
* the table being ad
*/
public QPagingOptions(PagingScrollTable<?> table) {
this(table, GWT.<PagingOptionsImages> create(PagingOptionsImages.class));
}