edittype:"select" を使用する場合、選択した値に基づいてサブグリッドを無効または有効にすることはできますか?
基本的にはこのようになります
dataEvents: [
{
type: 'change',
fn: function(e) {
var thisval = $(e.target).val();
if ( thisval == 'A' ) {
// enable subgrid
}
else {
// disable subgrid
}
}
}]