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

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

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

Table.setValue介绍

暂无

代码示例

代码示例来源:origin: com.haulmont.cuba/cuba-web

  1. protected void setSelectedIds(Collection<Object> itemIds) {
  2. if (component.isMultiSelect()) {
  3. component.setValue(itemIds);
  4. } else {
  5. component.setValue(itemIds.size() > 0 ? itemIds.iterator().next() : null);
  6. }
  7. }

代码示例来源:origin: com.haulmont.cuba/cuba-web

  1. @Override
  2. public void setSelected(E item) {
  3. if (item == null) {
  4. component.setValue(null);
  5. } else {
  6. setSelected(Collections.singletonList(item));
  7. }
  8. }

代码示例来源:origin: viritin/viritin

  1. @Override
  2. protected void setInternalValue(Collection newValue) {
  3. super.setInternalValue(newValue);
  4. table.setValue(newValue);
  5. }

代码示例来源:origin: com.haulmont.cuba/cuba-web

  1. @Override
  2. public void selectAll() {
  3. if (isMultiSelect()) {
  4. component.setValue(component.getItemIds());
  5. }
  6. }

代码示例来源:origin: viritin/viritin

  1. @Override
  2. protected void setValue(Object newValue, boolean repaintIsNotNeeded) throws ReadOnlyException {
  3. Set<ET> oldvalue = (Set<ET>) getValue();
  4. super.setValue(newValue, repaintIsNotNeeded);
  5. if (clientSideChange) {
  6. // TODO add strategies for maintaining the order in case of List
  7. // e.g. same as listing, selection order ...
  8. Set newvalue = (Set) getValue();
  9. Set<ET> orphaned = new HashSet<>(oldvalue);
  10. orphaned.removeAll(newvalue);
  11. removeRelation(orphaned);
  12. allRemovedRelations.addAll(orphaned);
  13. allAddedRelations.removeAll(orphaned);
  14. Set<ET> newValues = new LinkedHashSet<>(newvalue);
  15. newValues.removeAll(oldvalue);
  16. addRelation(newValues);
  17. allAddedRelations.addAll(newValues);
  18. allRemovedRelations.removeAll(newValues);
  19. MultiSelectTable.this.fireValueChange(true);
  20. }
  21. }

代码示例来源:origin: com.vaadin/vaadin-compatibility-server

  1. setValue(newValue, true);

代码示例来源:origin: info.magnolia.ui/magnolia-ui-framework-compatibility

  1. @Override
  2. protected Table createTable(Container container) {
  3. Table table = new Table(null, container);
  4. table.setSelectable(true);
  5. table.setMultiSelect(true);
  6. // use B as default selected value here
  7. table.setValue(Lists.newArrayList(B));
  8. return table;
  9. }
  10. };

相关文章

Table类方法