com.vaadin.v7.ui.Table.setPageLength()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(208)

本文整理了Java中com.vaadin.v7.ui.Table.setPageLength()方法的一些代码示例,展示了Table.setPageLength()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.setPageLength()方法的具体详情如下:
包路径:com.vaadin.v7.ui.Table
类名称:Table
方法名:setPageLength

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);

相关文章

微信公众号

最新文章

更多

Table类方法