Skip to content

v1.0.0

Compare
Choose a tag to compare
@web-padawan web-padawan released this 04 Feb 09:10
· 114 commits to master since this release

Live Demo →
API Documentation →

First stable release

  • <vaadin-grid-pro> component extending <vaadin-grid>

  • <vaadin-grid-pro-edit-column> component extending <vaadin-grid-column>

<vaadin-grid-pro>
  <vaadin-grid-pro-edit-column path="email"></vaadin-grid-pro-edit-column>
  <vaadin-grid-pro-edit-column 
    path="enabled" 
    editor-type="checkbox">
  </vaadin-grid-pro-edit-column>
  <vaadin-grid-pro-edit-column 
    path="permissions" 
    editor-type="select" 
    editor-options='["read", "write", "admin"]'>
  </vaadin-grid-pro-edit-column>
</vaadin-grid-pro>

Features

  • inline editing for cells in the column activated by double click, Space and Enter keys

  • editorType property allowing to use pre-defined editors: text (default), checkbox and select

  • editorOptions property allowing to set list of strings as values for the select editor type

  • custom cell editor support using editModeRenderer and <template class="editor">

  • keepEditorOpen property to edit next / previous cell after pressing Tab / Shift + Tab

  • enterNextRow property to enable switching row on Enter / Shift + Enter

Changes Since v1.0.0-beta2:

  • ff71ac6 chore: update screenshot and readme code snippet

  • e4cf73c chore(deps): bump vaadin-grid to 5.3.0