This library contians a setup of tools to help React developers to easily create grids for tabula data.
setSelectedRect
to set selection in grid. Refer story Custom Selection Range
to see the actual usage.currenlty data getter signature is ({rowData, header })
. Due to the fact that the data can be filtered and or sorted there is no way to identify the data using rowIndex. This results the lib to be less flexible as ({data,rowIndex,columnIndex})
. Data needs to be converted into simple array of objects format when using the libraray. Ways will be considered later to refactor so that a core version of Grid can be used for more flexible data shapes.
Things to consider (transposing the data)
{
ident: 'COLNAME',
type: 'str',
editable: true,
isKey: false,
alignment: 'center',
width: 100,
sortable: true,
//numFormat:
//dateFormat:
//
}