RIAEvangelist / awesome-webcomponents

Other
13 stars 2 forks source link

Create reusable Data Grid component #31

Open mrvini opened 8 years ago

mrvini commented 8 years ago

It would be great to have a reusable Data Grid component, that could be populated by JSON data object, Each object in the array (object) would represent a row, allow to display only subset of the object (meaning define columns that are visible)

Features of the Data Grid desired:

all that and more would be awesome data grid component

and example of data grid header would be the following to start

{
        "id" : {
            name : 'User Id',
            sortable : false,
            filterable : true,
        }
        "firstName" : {
            name: "First Name",
            sortable : true,
            filterable : true
        }

    }