SMART datagrid v.1 > Classes > DLBase
It sets one or more properties at the same time and returns itself by JSON object.
var column = grid.focusedIndex().column;
if (column) {
column.assign({
width: 200
resizable: true,
movable: true,
styles: {
background: "#ff0000"
}
});
}