SMART datagrid v.1 > Classes > DataColumn
The maximum number of characters which can be entered in column.
If it is 0, there will be no limit.
Defaults to 0.
$('#setMax').click(function () {
var column = grid.focusedColumn();
column.setMaxLength(20);
});