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

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

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

Table.setEditable介绍

[英]Sets the editable property. If table is editable a editor of type Field is created for each table cell. The assigned FieldFactory is used to create the instances. To provide custom editors for table cells create a class implementing the FieldFactory interface, and assign it to table, and set the editable property to true.
[中]

代码示例

代码示例来源:origin: OpenNMS/opennms

  1. @Override
  2. public void setReadOnly(boolean readOnly) {
  3. table.setEditable(!readOnly);
  4. toolbar.setVisible(!readOnly);
  5. super.setReadOnly(readOnly);
  6. }

代码示例来源:origin: OpenNMS/opennms

  1. @Override
  2. public void setReadOnly(boolean readOnly) {
  3. table.setEditable(!readOnly);
  4. toolbar.setVisible(!readOnly);
  5. super.setReadOnly(readOnly);
  6. }

代码示例来源:origin: OpenNMS/opennms

  1. @Override
  2. public void setReadOnly(boolean readOnly) {
  3. table.setEditable(!readOnly);
  4. toolbar.setVisible(!readOnly);
  5. super.setReadOnly(readOnly);
  6. }

代码示例来源:origin: OpenNMS/opennms

  1. @Override
  2. public void setReadOnly(boolean readOnly) {
  3. table.setEditable(!readOnly);
  4. toolbar.setVisible(!readOnly);
  5. super.setReadOnly(readOnly);
  6. }

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

  1. @Override
  2. public void setEditable(boolean editable) {
  3. super.setEditable(editable);
  4. if (editable) {
  5. if (getCacheRate() != 2) {
  6. setCacheRate(2);
  7. }
  8. }
  9. }

代码示例来源:origin: OpenNMS/opennms

  1. @Override
  2. public void setReadOnly(boolean readOnly) {
  3. table.setEditable(!readOnly);
  4. toolbar.setVisible(!readOnly);
  5. super.setReadOnly(readOnly);
  6. }

代码示例来源:origin: OpenNMS/opennms

  1. @Override
  2. public void setReadOnly(boolean readOnly) {
  3. step.setReadOnly(readOnly);
  4. table.setEditable(!readOnly);
  5. toolbar.setVisible(!readOnly);
  6. super.setReadOnly(readOnly);
  7. }

代码示例来源:origin: OpenNMS/opennms

  1. @Override
  2. public void setReadOnly(boolean readOnly) {
  3. combo.setReadOnly(readOnly);
  4. table.setEditable(!readOnly);
  5. toolbar.setVisible(!readOnly);
  6. super.setReadOnly(readOnly);
  7. }

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

  1. @Override
  2. public void setEditable(boolean editable) {
  3. if (this.editable != editable) {
  4. this.editable = editable;
  5. component.disableContentBufferRefreshing();
  6. EntityTableItems<E> entityTableSource = (EntityTableItems<E>) getItems();
  7. if (entityTableSource != null) {
  8. com.vaadin.v7.data.Container ds = component.getContainerDataSource();
  9. @SuppressWarnings("unchecked")
  10. Collection<MetaPropertyPath> propertyIds = (Collection<MetaPropertyPath>) ds.getContainerPropertyIds();
  11. if (editable) {
  12. enableEditableColumns(entityTableSource, propertyIds);
  13. } else {
  14. disableEditableColumns(entityTableSource, propertyIds);
  15. }
  16. }
  17. component.setEditable(editable);
  18. component.enableContentBufferRefreshing(true);
  19. }
  20. }

代码示例来源:origin: OpenNMS/opennms

  1. table.setEditable(true);
  2. table.setSizeFull();
  3. table.setImmediate(true);

代码示例来源:origin: OpenNMS/opennms

  1. /**
  2. * Instantiates a new MIB object field.
  3. *
  4. * @param resourceTypes the available resource types
  5. * @param mibGroupEditable true, if the MIB group can be modified
  6. */
  7. public MibObjField(final List<String> resourceTypes, boolean mibGroupEditable) {
  8. table.addStyleName("light");
  9. table.setVisibleColumns(new Object[] { "oid", "instance", "alias", "type" });
  10. table.setColumnHeaders(new String[] { "OID", "Instance", "Alias", "Type" });
  11. table.setEditable(!isReadOnly());
  12. table.setSelectable(true);
  13. table.setHeight("250px");
  14. table.setWidth("100%");
  15. table.setTableFieldFactory(new MibObjFieldFactory(resourceTypes));
  16. if (mibGroupEditable) {
  17. toolbar.addComponent(add);
  18. toolbar.addComponent(delete);
  19. }
  20. toolbar.setVisible(table.isEditable());
  21. setValidationVisible(true);
  22. }

代码示例来源:origin: OpenNMS/opennms

  1. table.setColumnHeader("decodes", "Decode Values");
  2. table.setColumnExpandRatio("decodes", 1);
  3. table.setEditable(!isReadOnly());
  4. table.setSelectable(true);
  5. table.setHeight("125px");

代码示例来源:origin: OpenNMS/opennms

  1. table.setColumnHeader("vbvalues", "Varbind Values");
  2. table.setColumnExpandRatio("vbvalues", 1);
  3. table.setEditable(!isReadOnly());
  4. table.setSelectable(true);
  5. table.setHeight("125px");

代码示例来源:origin: OpenNMS/opennms

  1. table.setColumnHeader("mevalues", "Element Values");
  2. table.setColumnExpandRatio("mevalues", 1);
  3. table.setEditable(!isReadOnly());
  4. table.setSelectable(true);
  5. table.setHeight("125px");

代码示例来源:origin: OpenNMS/opennms

  1. table.setColumnHeader("value", "Parameter Value");
  2. table.setColumnExpandRatio("value", 1);
  3. table.setEditable(!isReadOnly());
  4. table.setSelectable(true);
  5. table.setHeight("125px");

代码示例来源:origin: OpenNMS/opennms

  1. table.setVisibleColumns(new Object[]{"type", "value"});
  2. table.setColumnHeaders(new String[]{"Type", "Value"});
  3. table.setEditable(!isReadOnly());
  4. table.setSelectable(true);
  5. table.setImmediate(true);

代码示例来源:origin: OpenNMS/opennms

  1. table.setVisibleColumns(new Object[]{"cf", "xff", "steps", "rows"});
  2. table.setColumnHeaders(new String[]{"Consolidation Function", "XFF", "Steps", "Rows"});
  3. table.setEditable(!isReadOnly());
  4. table.setSelectable(true);
  5. table.setImmediate(true);

相关文章

Table类方法