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

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

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

Table.getVisibleColumns介绍

暂无

代码示例

代码示例来源:origin: org.opencms/opencms-core

  1. /**
  2. * Returns if the column with the given property id is visible and not collapsed.<p>
  3. *
  4. * @param propertyId the property id
  5. *
  6. * @return <code>true</code> if the column is visible
  7. */
  8. public boolean isColumnVisible(CmsResourceTableProperty propertyId) {
  9. return Arrays.asList(m_fileTable.getVisibleColumns()).contains(propertyId)
  10. && !m_fileTable.isColumnCollapsed(propertyId);
  11. }

代码示例来源:origin: org.opencms/opencms-core

  1. /**
  2. * Sets the list of collapsed columns.<p>
  3. *
  4. * @param collapsedColumns the list of collapsed columns
  5. */
  6. public void setCollapsedColumns(Object... collapsedColumns) {
  7. Set<Object> collapsedSet = Sets.newHashSet();
  8. for (Object collapsed : collapsedColumns) {
  9. collapsedSet.add(collapsed);
  10. }
  11. for (Object key : m_fileTable.getVisibleColumns()) {
  12. m_fileTable.setColumnCollapsed(key, collapsedSet.contains(key));
  13. }
  14. }

代码示例来源:origin: uk.q3c.krail/krail

  1. /**
  2. * Sets the I18N values for the Table itself, and also iterates the visible columns for column ids which are I18NKeys, and translates those as well
  3. *
  4. * @param table
  5. * the table to process
  6. * @param annotationValues
  7. * the values to apply
  8. * @param annotationInfo
  9. * used primarily for the Field name
  10. */
  11. protected void processTable(Table table, AnnotationValues annotationValues, AnnotationInfo annotationInfo) {
  12. // Table columns need special treatment
  13. applyAnnotationValues(table, annotationValues, annotationInfo);
  14. // do the column headers
  15. Object[] columns = table.getVisibleColumns();
  16. Locale locale = annotationValues.locale.isPresent() ? annotationValues.locale.get() : currentLocale.getLocale();
  17. List<String> headers = new ArrayList<>();
  18. for (Object column : columns) {
  19. if (column instanceof I18NKey) {
  20. I18NKey columnKey = (I18NKey) column;
  21. String header = translate.from(columnKey, locale);
  22. headers.add(header);
  23. } else {
  24. headers.add(column.toString());
  25. }
  26. }
  27. String headerArray[] = headers.toArray(new String[headers.size()]);
  28. table.setColumnHeaders(headerArray);
  29. }

代码示例来源:origin: com.holon-platform.vaadin7/holon-vaadin

  1. Object[] visibleColumns = getTable().getVisibleColumns();
  2. if (visibleColumns != null && visibleColumns.length > 0) {
  3. List<P> properties = new ArrayList<>(visibleColumns.length);

代码示例来源:origin: org.opencms/opencms-core

  1. /**
  2. * Sets the table state.<p>
  3. *
  4. * @param state the table state
  5. */
  6. public void setTableState(CmsFileExplorerSettings state) {
  7. if (state != null) {
  8. m_fileTable.setSortContainerPropertyId(state.getSortColumnId());
  9. m_fileTable.setSortAscending(state.isSortAscending());
  10. Object[] visibleCols = m_fileTable.getVisibleColumns();
  11. for (int i = 0; i < visibleCols.length; i++) {
  12. m_fileTable.setColumnCollapsed(visibleCols[i], state.getCollapsedColumns().contains(visibleCols[i]));
  13. }
  14. }
  15. }

代码示例来源:origin: org.opencms/opencms-core

  1. /**
  2. * Returns the current table state.<p>
  3. *
  4. * @return the table state
  5. */
  6. public CmsFileExplorerSettings getTableSettings() {
  7. CmsFileExplorerSettings fileTableState = new CmsFileExplorerSettings();
  8. fileTableState.setSortAscending(m_fileTable.isSortAscending());
  9. fileTableState.setSortColumnId((CmsResourceTableProperty)m_fileTable.getSortContainerPropertyId());
  10. List<CmsResourceTableProperty> collapsedCollumns = new ArrayList<CmsResourceTableProperty>();
  11. Object[] visibleCols = m_fileTable.getVisibleColumns();
  12. for (int i = 0; i < visibleCols.length; i++) {
  13. if (m_fileTable.isColumnCollapsed(visibleCols[i])) {
  14. collapsedCollumns.add((CmsResourceTableProperty)visibleCols[i]);
  15. }
  16. }
  17. fileTableState.setCollapsedColumns(collapsedCollumns);
  18. return fileTableState;
  19. }

代码示例来源:origin: org.opencms/opencms-core

  1. Object[] cols = m_fileTable.getVisibleColumns();
  2. List<CmsResourceTableProperty> expandCols = Lists.newArrayList();
  3. int nonExpandWidth = 0;

代码示例来源:origin: org.opencms/opencms-core

  1. Object[] visibleCols = m_fileTable.getVisibleColumns();
  2. for (int i = 0; i < visibleCols.length; i++) {
  3. if (CmsResourceTableProperty.PROPERTY_RESOURCE_NAME.equals(visibleCols[i])) {

代码示例来源:origin: org.aperteworkflow/base-widgets

  1. table.setSelectable(true);
  2. for (Object o : table.getVisibleColumns()) {
  3. table.setColumnHeader(o, getMessage("processdata.comments.comment.table." + o));

代码示例来源:origin: org.aperteworkflow/base-widgets

  1. for (Object o : table.getVisibleColumns()) {
  2. table.setColumnHeader(o, getMessage("awf.basewidgets.process-history." + o));

相关文章