我想知道在提交数据之前是否有可能获得所有验证错误的列表?
谢谢!
答案 0 :(得分:2)
将监听器添加到afterValidate事件
http://handsontable.com/demo/validation.html
更多这里
https://github.com/warpech/jquery-handsontable/wiki/Events
afterValidate(isValid:Boolean,value:Mixed,row:Number,prop:String,source:String)
在处理函数之后,您可以编写JQuery选择器来提取错误数据。
根据请求更新
你附上这样的事件监听器,然后是according to documentation
$('#your-handsontable-id').on('afterValidate', function(result){
if(!result.isValid){
alert('Take your pants off cause we have a problem boy! - value - '+ result.value +' row -' + result.row +' prop -' + result.prop+ +' source-'+result.source);
}
});