SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.maxRowCount  property

The maximum number of data rows which can be added to grid Row Model

If the default value is 0, it will not limit. If use rowFilter, you can specify the rows which can be added in more various ways. 

Defaults to 0.

Getter
function maxRowCount(): Integer
Setter
function setMaxRowCount(value: Integer)
Code -1
    $('#btnCount').click(function () {
        grid.setMaxRowCount($('#count').val());
    });
See Also
rowFilter
rowSource
Examples
Fixed Rows
Row Filtering