datagrid 对当前行进行修改和保存

来源:互联网 发布:魔灵召唤无法连接网络7 编辑:程序博客网 时间:2024/05/21 23:11
columns:[[
               {field:'id',title:'id',width:40,align:'center',hidden:true},
      {field:'name',title:'名称',width:40,align:'center',sortable: true,
                editor: { type: 'validatebox', options: { required: true} }
      },
    {field:'person',title:'使用者',width:40,align:'center',sortable: true,
      editor: { type: 'validatebox', options: { required: true} }
    },
    {field:'count',title:'数量',width:40,align:'center'},
    {field:'dept_name',title:'部门',width:40,align:'center',sortable: true,
    editor: { type: 'validatebox', options: { required: true} }
    },   
    {field:'uniques',title:'唯一标示',width:40,align:'center'},

       {field:'operation',title:'操作',width:70,align:'center',

//===============================点击修改时
function updateEvent(id,index){

$("#companyTable").datagrid("beginEdit", index);



}

//=========进行保
function saveEnent(id,index){





$("#companyTable").datagrid("endEdit", index);

原创粉丝点击