我有一个可编辑的 JQGrid(使用事件进行内联编辑)。我想验证编辑过的数据。我尝试了以下但没有奏效。它将数据提交到服务器并返回错误。
方法一: editRules:{number:true}
Method2 { name: 'Projection', index: 'Projection', width: 45, editable: true, edittype: 'text', editRules: { custom: true, custom_func: ValidateCell} },
我也尝试设置 edittype = custom 但我不明白为什么需要它。我只需要阻止用户输入除数字以外的任何内容
谢谢, 阿夏