jQgrid在表单视图中显示隐藏列
jQuery("#CustomerDetailsGrid").jqGrid({ //ignore other properties colModel: [ { name: 'AccountNumber', index: 'AccountNumber', hidden: true, viewable: true } ], viewrecords: true });
我需要在网格视图中隐藏“帐号”列,但在表单视图中显示它。( 不编辑表单 )
如果将创建“视图”对话框,则将填充有关放置在行中的每个列的信息。 行的id(
元素的id)将从前缀“trv_”和相应列的名称构造。 重要的是要理解,在表单中将填充包含隐藏列的 所有列的信息,但隐藏列的
元素将被隐藏(has style =“display:none;”)。 因此,为了使信息可见,只需为相应的
元素调用jQuery.show()
函数即可。
我准备了演示这个的小演示 。 在demo id
列中隐藏了,但是我在View选项的beforeShowForm
和afterclickPgButtons
事件处理程序中可以看到信息:
$("#list").jqGrid('navGrid','#pager', {add:false,edit:false,del:false,view:true,search:false}, {}, // edit options {}, // add options {}, // del options {}, // search options { // vew options beforeShowForm: function(form) { $("tr#trv_id",form[0]).show(); }, afterclickPgButtons: function(whichbutton, form, rowid) { $("tr#trv_id",form[0]).show(); } });
最好的方法是只添加editrules:{edithidden:true}选项。
colModel: [{ name: 'AccountNumber', index: 'AccountNumber', hidden: true, viewable: true,editrules:{edithidden:true} }]
为了跟进J_的建议,应用以下方法可以解决问题:
editoptions: { dataInit: function(element) { $(element).attr("readonly", "readonly"); } }
场景#1 :
- 字段必须在网格中可见
- 字段必须在表单中可见
- 字段必须是只读的
方案 :
colModel:[ {name:'providerUserId',index:'providerUserId', width:100,editable:true, editrules:{required:true}, editoptions:{ dataInit: function(element) { jq(element).attr("readonly", "readonly"); } }}, ],
providerUserId在网格中可见,在编辑表单时可见。 但是你无法编辑内容。
场景#2 :
- 字段必须在网格中不可见
- 字段必须在表单中可见
- 字段必须是只读的
方案 :
colModel:[ {name:'providerUserId',index:'providerUserId', width:100,editable:true, editrules:{required:true, edithidden:true}, hidden:true, editoptions:{ dataInit: function(element) { jq(element).attr("readonly", "readonly"); } }}, ]
请注意,在这两个实例中,我使用jq来引用jquery,而不是通常的$。 在我的HTML中,我有以下脚本来修改jQuery使用的变量:
隐藏网格列
jQuery("#GridId").jqGrid('hideCol','colName');