当前位置: 代码迷 >> Java Web开发 >> jqgrid editrules custom:true,custom_func:该如何解决
  详细解决方案

jqgrid editrules custom:true,custom_func:该如何解决

热度:601   发布时间:2016-04-17 17:26:48.0
jqgrid editrules custom:true,custom_func:
custom:设置为true,则会通过一个自定义的js函数来验证。函数定义在custom_func中。
  custom_func:传递给函数的值一个是需要验证value,另一个是定义在colModel中的name属性值。函数必须返回一个数组,一个是验证的结果,true或者false,另外一个是验证错误时候的提示字符串。形如[false,”Please enter valid value”]这样。
  自定义验证的例子:
  <script>
  function mypricecheck(value, colname) {
  if (value < 0 && value >20)
  return [false,"Please enter value between 0 and 20"];
  else
  return [true,""];
  }

  jQuery("#grid_id").jqGrid({
  ...
  colModel: [
  ...
  {name:'price', ..., editrules:{custom:true, custom_func:mypricecheck....}, editable:true },
  ...
  ]
  ...
  });



上面是我在网上找的,我想看的地方他都用"...."省略了,我想知道mypricecheck这个方法具体在jqgrid中怎么调用?谢谢大侠


------解决方案--------------------
这里你可以利用alert来查看如何调用的。

在不确定参数怎么转化的地方把参数打印下。

一般验证的话组件会给一个规则,组件按照这个规则来验证,验证完了一般都有参数传进判断的地方。试试跟踪下,自己也能看明白点。
  相关解决方案