SMART datagrid v.1 > Classes > CheckBar

Back  Forward

DataLudi.CheckBar.width  property

The width of CheckBar. 

It specifies the width of area which can be taken up by CheckBar in grid in pixels. 

Defaults to 21.

Getter
function width(): Integer
Setter
function setWidth(value: Integer)
Code -1
    $('#incCheckBar').click(function (ev) {
        grid.checkBar().setWidth(Math.min(30, grid.checkBar().width() + 2));
    });
See Also
exclusive
GridBase.checkBar
Examples
Check Bar
Checkable Expression & Callback