ag-grid
具有属性stopEditingWhenGridLosesFocus
。我通过提供单元格编辑器组件创建了自己的单元格编辑器。
使用自定义单元格编辑器组件时,是否有与属性stopEditingWhenGridLosesFocus
等效的属性或方法?
答案 0 :(得分:0)
自定义单元格渲染器没有这样的选项。但是,您可以自己检测focusOut并从ICellEditorParams界面调用stopEditing()。
interface ICellEditorParams {
...
// Callback to tell grid to stop editing the current cell. pass 'false' to prevent navigation moving
// to the next cell if grid property enterMovesDownAfterEdit=true
stopEditing: (suppressNavigateAfterEdit?: boolean)=>void;
...
}