- 方法一:简单粗暴在colModel里设置
width:'none'
- 方法二:在colModel里设置
hidden:true
{name:'CONTENT',index:'CONTENT',editable : true,edittype:"textarea",hidden:true}
js设置显示
beforeShowForm: function(e) { $("#tr_CONTENT").show(); }
width:'none'
hidden:true
{name:'CONTENT',index:'CONTENT',editable : true,edittype:"textarea",hidden:true}
js设置显示
beforeShowForm: function(e) { $("#tr_CONTENT").show(); }