SMART datagrid v.1 > Classes > GridBase
Apply the data cells specified by parameter dataRowIndices and fields to CellStyle registered by styleId in grid.
Reset the state of editor of data cell in which was displaying the editor.
$('#setCellStyles').click(function () {
var rows = grid.getSelectedDataIndices();
if (rows && rows.length > 0) {
grid.setCellStyles(rows, ['project_id', 'project_name'], 'style04');
}
});