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

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

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

Table.getContainerDataSource介绍

暂无

代码示例

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

  1. @Override
  2. public Hierarchical getContainerDataSource() {
  3. return (Hierarchical) super.getContainerDataSource();
  4. }

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

  1. public SelectableBeanItemContainer<T> getContainerDataSource() {
  2. return (SelectableBeanItemContainer<T>) super.getContainerDataSource();
  3. }

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

  1. private boolean isContainerInitialized() {
  2. return table.getContainerDataSource() instanceof ListContainer;
  3. }

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

  1. /**
  2. * Gets the container property IDs, which can be used to sort the item.
  3. * <p>
  4. * Note that the {@link #isSortEnabled()} state affects what this method
  5. * returns. Disabling sorting causes this method to always return an empty
  6. * collection.
  7. * </p>
  8. *
  9. * @see Container.Sortable#getSortableContainerPropertyIds()
  10. */
  11. @Override
  12. public Collection<?> getSortableContainerPropertyIds() {
  13. final Container c = getContainerDataSource();
  14. if (c instanceof Container.Sortable && isSortEnabled()) {
  15. return ((Container.Sortable) c).getSortableContainerPropertyIds();
  16. } else {
  17. return Collections.EMPTY_LIST;
  18. }
  19. }

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

  1. private void paintSorting(PaintTarget target) throws PaintException {
  2. // Sorting
  3. if (getContainerDataSource() instanceof Container.Sortable) {
  4. target.addVariable(this, "sortcolumn",
  5. columnIdMap.key(sortContainerPropertyId));
  6. target.addVariable(this, "sortascending", sortAscending);
  7. }
  8. }

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

  1. Collection<?> containerPropertyIds = getContainerDataSource()
  2. .getContainerPropertyIds();

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

  1. @Override
  2. public void removeColumn(Table.Column column) {
  3. if (column == null) {
  4. return;
  5. }
  6. component.removeContainerProperty(column.getId());
  7. columns.remove(column.getId());
  8. columnsOrder.remove(column);
  9. // vaadin8 it seems that it is not required
  10. if (!(component.getContainerDataSource() instanceof com.vaadin.v7.data.Container.ItemSetChangeNotifier)) {
  11. component.refreshRowCache();
  12. }
  13. column.setOwner(null);
  14. }

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

  1. if (isEditable() && fieldFactory != null) {
  2. final Field<?> f = fieldFactory
  3. .createField(getContainerDataSource(), rowId, colId, this);
  4. if (f != null) {

代码示例来源:origin: info.magnolia.activation/magnolia-module-activation

  1. @Override
  2. public void textChange(FieldEvents.TextChangeEvent event) {
  3. Container.Filterable f = (Container.Filterable) table.getContainerDataSource();
  4. if (filter != null) {
  5. f.removeContainerFilter(filter);
  6. }
  7. filter = new SimpleStringFilter(i18n.translate("activationMonitor.activationLog.user.label"), event.getText(),
  8. true, false);
  9. f.addContainerFilter(filter);
  10. }
  11. });

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

  1. public void sort(Object[] propertyId, boolean[] ascending)
  2. throws UnsupportedOperationException {
  3. final Container c = getContainerDataSource();
  4. if (c instanceof Container.Sortable) {
  5. final int pageIndex = getCurrentPageFirstItemIndex();

代码示例来源: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: com.haulmont.cuba/cuba-web

  1. @Override
  2. public void setLookupSelectHandler(Consumer<Collection<E>> selectHandler) {
  3. Consumer<Action.ActionPerformedEvent> actionHandler = event -> {
  4. Set<E> selected = getSelected();
  5. selectHandler.accept(selected);
  6. };
  7. setEnterPressAction(
  8. new BaseAction(Window.Lookup.LOOKUP_ENTER_PRESSED_ACTION_ID)
  9. .withHandler(actionHandler)
  10. );
  11. setItemClickAction(
  12. new BaseAction(Window.Lookup.LOOKUP_ITEM_CLICK_ACTION_ID)
  13. .withHandler(actionHandler)
  14. );
  15. if (isEditable()) {
  16. EntityTableItems<E> entityTableSource = (EntityTableItems<E>) getItems();
  17. com.vaadin.v7.data.Container ds = component.getContainerDataSource();
  18. @SuppressWarnings("unchecked")
  19. Collection<MetaPropertyPath> propertyIds = (Collection<MetaPropertyPath>) ds.getContainerPropertyIds();
  20. disableEditableColumns(entityTableSource, propertyIds);
  21. }
  22. if (buttonsPanel != null && !buttonsPanel.isAlwaysVisible()) {
  23. buttonsPanel.setVisible(false);
  24. }
  25. }

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

  1. createColumns(component.getContainerDataSource());

相关文章

Table类方法