SMART datagrid v.1 > Classes > CheckBar

Back  Forward

DataLudi.CheckBar.exclusive  property

If it is true, it will change Checked state of row only clicked by user as true, and else will become false

It also displays check mark of CheckBar cells with raido button. 

Defaults to false.

Getter
function exclusive(): Boolean
Setter
function setExclusive(value: Boolean)
Code -1
    $('#exclusiveCheck').click(function (ev) {
        grid.checkBar().setExclusive(ev.target.checked);
    });
See Also
exclusiveDisplay
GridBase.isChecked
EditOptions.checkable
GridBase.checkBar
Examples
Check Bar
Checkable Expression & Callback