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.
我有一个带有可编辑字段的网格(通过 CellEditung 插件)。每次网格字段的内容发生变化时,我都需要执行一些函数(我需要它用于文本字段和组合框字段)。不幸的是,我不能使用事件“编辑”,因为它仅在编辑过程完成时触发(编辑的字段失去焦点),并且我需要捕获文本更改事件(编辑文本字段时的 ~= keyup 事件)。有人知道这样做的方法吗?
您可以使用 cellclick 事件侦听器来获取记录。
cellclick:function( thisObj, td, cellIndex, record, tr, rowIndex, e, eOpts ){ console.log(record); }
如果您需要对选择更改做一些事情,您可以将其中一种方法连接到gridSelectionModel
您也可以将函数连接到columnModel
或者只是cellclick或celldblclick