当前位置: 首页>>代码示例>>Java>>正文


Java PagingScrollTable类代码示例

本文整理汇总了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;
	}
 
开发者ID:jchaganti,项目名称:gharonda,代码行数:30,代码来源:BaseResultsView.java

示例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;
	}
 
开发者ID:jchaganti,项目名称:gharonda,代码行数:30,代码来源:BaseComparePropertiesView.java

示例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;
}
 
开发者ID:lsst,项目名称:firefly,代码行数:7,代码来源:PagingPanel.java

示例4: getPagingScrollTable

import com.google.gwt.gen2.table.client.PagingScrollTable; //导入依赖的package包/类
/**
 * @return the {@link PagingScrollTable}.
 */
public PagingScrollTable<?> getPagingScrollTable() {
	return table;
}
 
开发者ID:qafedev,项目名称:qafe-platform,代码行数:7,代码来源:QPagingOptions.java

示例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));
}
 
开发者ID:lsst,项目名称:firefly,代码行数:9,代码来源:PagingPanel.java

示例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));
}
 
开发者ID:qafedev,项目名称:qafe-platform,代码行数:10,代码来源:QPagingOptions.java


注:本文中的com.google.gwt.gen2.table.client.PagingScrollTable类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。