SMART datagrid v.1 > Classes > DLBase
It changes Boolean property value as inverse value by property name.
This method returns this. And, you can specify property path which is separated by "." in property name as below.
// It is the same as below code.
return this.setProperty(!this.getProperty(prop));
// Display/Hide CheckBar
$("#toogleCheckBar").click(function () {
grid.toggle('checkBar.visible');
// or
grid.checkBar().toggle('visible');
});
// Display/Hide CheckBar and Footer
grid.toggle('checkBar.visible').toggle('footer.visible');