SMART datagrid v.1 > Classes > GridBase
The collection of data cell renderers which can be specified by renderer value of Style. Basically, the data cell is drawn by renderer set in Column.
$(funciton () {
// Add the renderers which will be used in dynamic style in advance.
grid.dataCellRenderres().addRenderers([
{
id: 'shape',
type: 'shape'
}, {
id: 'bar',
type: 'bar'
}, {
id: 'check',
type: 'check'
}
]);
});