码迷,mamicode.com
首页 > 其他好文 > 详细

3. easyui 修改功能实例

时间:2017-06-01 16:42:45      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:datagrid   UI   行修改   date   easyui   mod   ==   modal   warning   

function modifyPerson() {
  var rows = $(‘#personInfoGrid‘).datagrid(‘getSelections‘);
  if (rows.length == 0) {
    $.messager.alert("警告", "请选择一条要新增权限的记录!", "warning");
    return;
  } else if (rows.length > 1) {
    $.messager.alert("警告", "每次只能选择一条记录进行修改!", "warning");
    return;
  } else {
    operType = "update";
    showAddOrUpdatePersonAuthModal(rows[0]);
  }
}

3. easyui 修改功能实例

标签:datagrid   UI   行修改   date   easyui   mod   ==   modal   warning   

原文地址:http://www.cnblogs.com/zkx4213/p/6929045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!