Skip to content

Latest commit

 

History

History
28 lines (27 loc) · 943 Bytes

requirements.md

File metadata and controls

28 lines (27 loc) · 943 Bytes
  • Custom element that shows a collection of data in grid or tabular format
  • The syntax loosely looks like as follows
<data-grid model.bind="model">
    <grid-column width="100">
        <header> Un-sortable column </header>
        Whatever goes here is the content
    </grid-column>
    <grid-column property="prop1" non-resizable>
        <header> Header1 </header>
        Whatever goes here is the content
    </grid-column>
    <grid-column property="prop2" sort-direction="desc">
        <header>
            <custom-element-header-content></custom-element-header-content>
        </header>
        <custom-element-cell-content></custom-element-cell-content>
    </grid-column>
</data-grid>
  • Supports item selection
    • single selection
    • multiple selection
  • The items must be page-able
  • Supports sorting
  • Supports column reordering
  • Supports column resizing