Skip to content

johnyanarella/radium-datagrid

This branch is 16 commits behind jasongardnerlv/radium-datagrid:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9fa2b1c · Apr 18, 2016

History

82 Commits
Apr 14, 2016
Feb 4, 2016
Apr 10, 2016
Nov 12, 2015
Apr 14, 2016
Apr 14, 2016
Dec 2, 2015
Jan 13, 2016
Feb 4, 2016
Feb 4, 2016
Mar 24, 2016
Apr 14, 2016
Apr 14, 2016
Apr 18, 2016
Apr 13, 2016

Repository files navigation

#Radium Datagrid

######A Material Design inspired data grid element for Polymer.js apps.

This element uses, as an initial foundation, the Google Material Design specification for data tables: Data Tables

However, the goal of the element is to support much richer data grid functionality, so there will be necessary deviations or extrapolations, as features that are not included in the specification are added to this element.

Simple Example:

<radium-datagrid items="[[_myItems]]">
  <template>
    <radium-datagrid-row>
      <radium-datagrid-column id="foo" header="Foo"><span>[[row.foo]]</span></radium-datagrid-column>
      <radium-datagrid-column id="bar" header="Bar"><span>[[row.bar]]</span></radium-datagrid-column>
      <radium-datagrid-column id="baz" header="Baz"><span>[[row.baz]]</span></radium-datagrid-column>
    </radium-datagrid-row>
  </template>
</radium-datagrid>

A row will be rendered for each item of the collection, and the row property will be available for the template of each column.

Demos

####Basic configurations Column width, alignment, and grid line/color options. Column sorting also demonstrated.

####Data Loading States Shows the various states of the grid initial, loading, loaded, and no records

####Paging footer Optional footer with paging controls.

####Item selection Single selection and multi-selection examples (both cross-device and desktop specific).

####Infinite scroll Simple infinite scroll example.

####Column Filters Toggle inputs on column headers to filter data.

###License MIT Licensed

About

Material Design inspired data grid component

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 100.0%