Is it possible to disable or enable subgrid based on the selected value when using edittype:”select” ?
basically it will look like this
dataEvents: [
{
type: 'change',
fn: function(e) {
var thisval = $(e.target).val();
if ( thisval == 'A' ) {
// enable subgrid
}
else {
// disable subgrid
}
}
}]
Temporary solved by using :