I have a question
Is't possible to enable/disable the add button in a detail grid (I have 4 detailed grids ) according to the specific value of a column of the selected row of the master grid?
Thank in advance to all suggestions
3 Answers
You can refer demos/editing/column-access.php.
And in grid_select() function, you can put following line on your desired condition:
jQuery("#add_list4").addClass("ui-state-disabled");
where list4 is your detail grid id.
Your Answer