Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GridPanelにCheckColumnがあり、その行のチェックボックスがオンになっている場合、その行の編集可能なセルを無効にしたい。これは可能ですか?
これを行う最も簡単な方法は、エディターでbeforeeditイベントをリッスンすることです。何かのようなもの:
cellEditing.on('beforeedit', function(ed, context) { return !context.record.get('checkField'); });