SMART datagrid v.1 > Classes > RowIndicator

Back  Forward

DataLudi.RowIndicator.maxWidth  property

The maximum width of Row indicator. 

It specifies the maximum width which can be taken up by Row indicator in grid in pixels. Regardless of width setting, it will always display the width less than this value. If specify less than 0, there will be no limit. 

Defaults to 0.

Getter
function maxWidth(): Integer
Setter
function setMaxWidth(value: Integer)
Code -1
    grid.setOptions({
        rowIndicator: {
            maxWidth: 80,
            minWidth: 10
        }
    });
Code -2
    grid.rowIndicator().setMaxWidth(80);
See Also
width
minWidth
Examples
Row Indicator