本文整理了Java中com.vaadin.v7.ui.Table.setMultiSelect()
方法的一些代码示例,展示了Table.setMultiSelect()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.setMultiSelect()
方法的具体详情如下:
包路径:com.vaadin.v7.ui.Table
类名称:Table
方法名:setMultiSelect
[英]Sets the behavior of how the multi-select mode should behave when the table is both selectable and in multi-select mode.
Note, that on some clients the mode may not be respected. E.g. on touch based devices CTRL/SHIFT base selection method is invalid, so touch based browsers always use the MultiSelectMode#SIMPLE.
[中]
代码示例来源:origin: com.haulmont.cuba/cuba-web
@Override
public void setMultiSelect(boolean multiselect) {
component.setMultiSelect(multiselect);
}
代码示例来源:origin: viritin/viritin
@Override
@Deprecated
public void setMultiSelect(boolean multiSelect) {
super.setMultiSelect(multiSelect);
}
代码示例来源:origin: info.magnolia.ui/magnolia-ui-framework-compatibility
@Override
protected Table createTable(Container container) {
Table table = new Table(null, container);
table.setSelectable(true);
table.setMultiSelect(true);
// use B as default selected value here
table.setValue(Lists.newArrayList(B));
return table;
}
};
代码示例来源: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 table = new Table();
table.setSelectable(false);
table.setMultiSelect(false);
table.setImmediate(false);
table.setWidth("100%");
代码示例来源:origin: com.haulmont.cuba/cuba-web
protected void initComponent(T component) {
component.setMultiSelect(false);
component.setValidationVisible(false);
component.setShowBufferedSourceException(false);
代码示例来源:origin: info.magnolia.activation/magnolia-module-activation
final Table table = new Table();
table.setSelectable(false);
table.setMultiSelect(false);
table.setImmediate(false);
table.setWidth("100%");
代码示例来源:origin: OpenNMS/opennms
categoriesTable.setColumnExpandRatio("Category", 1.0f);
categoriesTable.setSelectable(true);
categoriesTable.setMultiSelect(true);
代码示例来源:origin: OpenNMS/opennms
columnsTable.setColumnExpandRatio("label", 1.0f);
columnsTable.setSelectable(true);
columnsTable.setMultiSelect(false);
rowsTable.setColumnExpandRatio("label", 1.0f);
rowsTable.setSelectable(true);
rowsTable.setMultiSelect(false);
内容来源于网络,如有侵权,请联系作者删除!