Make Checkboxes in a grid unseletionable
Is there a way to make checkboxes unseletionable so that their checked value cant be changed?
Del
May 12,
obj.setCellTemplate(new AW.Templates.Checkbox, 1);
obj.setCellValue(true, 1);
obj.onCellValueChanging = function(value, col, row){
if (col==1) {
return 1; // cancel change
}
}
This topic is archived.
ActiveWidgets is a javascript library for creating user interfaces. It offers excellent performance for complex screens while staying simple, compact and easy to learn. Deployed by thousands of commercial customers in more than 70 countries worldwide.
Copyright © ActiveWidgets 2021