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

jqgrid 使用自带的行编辑

时间:2017-08-15 12:38:13      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:sed   val   单击   int   url   ons   bar   ble   jqgrid   

上篇jqgrid 单击行启用行编辑,切换行保存原编辑行

本篇,说说使用jqgrid自带的行编辑

技术分享

1)设置需要编辑的列  editable: true 

技术分享
colModel: [
            { label: ‘字段编码‘, name: ‘FieldCode‘, key: true, width: 180, editable: false },
             {
                 label: ‘字段名称‘,
                 name: ‘FieldName‘,
                 width: 150,
                 editable: true,
                 edittype: "text",
                 editrules: { required: true }
             },
              {
                  label: ‘字段类型‘,
                  name: ‘DataType‘,
                  width: 10,
                  hidden: true,
                  editable: true,
              },
              {
                  label: ‘是否排序‘,
                  name: ‘IsOrder‘,
                  width: 80,
                  editable: true,
                  edittype: "select",
                  editoptions: {
                      //value: "true:是;false:否"
                      value: "true:true;false:false"
                  }
              },
               {
                   label: ‘列宽‘,
                   name: ‘Width‘,
                   width: 55,
                   editable: true,
                   editrules: { required: true, integer: true },
                   edittype: "text"
               }]
View Code

2)设置底部按钮按钮区

技术分享
    $(‘#fieldGrid‘).navGrid("#fieldGridPager", { edit: false, add: false, del: false, refresh: false, view: false });
    $(‘#fieldGrid‘).inlineNav(‘#fieldGridPager‘,
                // the buttons to appear on the toolbar of the grid
                {
                    edit: true,
                    add: false,
                    del: true,
                    cancel: true,
                    editParams: {
                        keys: true,
                    },
                    addParams: {
                        keys: true
                    }
    });
View Code

 注意:使用自带的编辑不需要设置行选中属性 onSelectRow

需要特别注意:不能同时支持内置行编辑和行事件触发的行编辑。会产生行结束编辑的干扰项,比较坑,请绕开。若要使用行编辑请分别采用以下某一种方式

jqgrid 单击行启用行编辑,切换行保存原编辑行

jqgrid 使用自带的行编辑

jqgrid 使用自带的行编辑

标签:sed   val   单击   int   url   ons   bar   ble   jqgrid   

原文地址:http://www.cnblogs.com/senyier/p/7364322.html

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