本文整理了Java中com.vaadin.v7.ui.Table.setPageLength()
方法的一些代码示例,展示了Table.setPageLength()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.setPageLength()
方法的具体详情如下:
包路径:com.vaadin.v7.ui.Table
类名称:Table
方法名:setPageLength
[英]Sets the page length.
Setting page length 0 disables paging. The page length defaults to 15.
If Table has height set ( #setHeight(float,Unit) ) the client side may update the page length automatically the correct value.
[中]设置页面长度。
将页面长度设置为0将禁用分页。页面长度默认为15。
如果表格设置了高度(#setHeight(float,Unit)),客户端可以自动将页面长度更新为正确的值。
代码示例来源:origin: com.haulmont.cuba/cuba-web
protected void updateClientCaching() {
if (getHeight() < 0) {
table.setCacheRate(0);
table.setPageLength(0);
} else {
table.setCacheRate(cacheRate);
table.setPageLength(pageLength);
}
}
}
代码示例来源:origin: info.magnolia.activation/magnolia-module-activation
private Layout createPublicInstancesSection() {
VerticalLayout layout = new VerticalLayout();
StaticField fieldsetTitle = createStaticField(null, i18n.translate("activationMonitor.publicInstances.fieldset.label"));
fieldsetTitle.addStyleName("fieldset-title");
layout.addComponent(fieldsetTitle);
if (activationStorage.getSubscriberResponseTimes().size() > 0) {
Table table = new Table();
table.setSelectable(false);
table.setMultiSelect(false);
table.setImmediate(false);
table.setWidth("100%");
table.setPageLength(5);
table.addContainerProperty(i18n.translate("activationMonitor.publicInstances.subscriber.label"), String.class, null);
table.addContainerProperty(i18n.translate("activationMonitor.publicInstances.max.label"), Long.class, null);
table.addContainerProperty(i18n.translate("activationMonitor.publicInstances.min.label"), Long.class, null);
table.addContainerProperty(i18n.translate("activationMonitor.publicInstances.avg.label"), Long.class, null);
int i = 0;
for (Map.Entry<String, ResponseTimeEntry> entry : activationStorage.getSubscriberResponseTimes().entrySet()) {
String subscriber = entry.getKey();
long max = entry.getValue().getMax();
long min = entry.getValue().getMin();
long avg = entry.getValue().getAvg();
table.addItem(new Object[]{subscriber, max, min, avg}, i++);
}
layout.addComponent(table);
} else {
layout.addComponent(createStaticField(null, i18n.translate("activationMonitor.publicInstances.noActivations.label")));
}
return layout;
}
代码示例来源:origin: info.magnolia.activation/magnolia-module-activation
table.setImmediate(false);
table.setWidth("100%");
table.setPageLength(10);
代码示例来源:origin: info.magnolia.activation/magnolia-module-activation
table.setImmediate(false);
table.setWidth("100%");
table.setPageLength(10);
内容来源于网络,如有侵权,请联系作者删除!