我的数据源中有很多列要加载到jqGrid
。由于我们需要指定col Names和col Model,因此编写所有col名称和col模型每列将非常耗时。就像我在数据表中有80列,在数据库中有10个表。
有没有办法跳过列定义,就像在ASP.NET Grid-View控件中一样,我们只是将它与数据源绑定,并且所有列都填充与数据库中相同。
JQuery("JQGrid").jqGrid({
url:'JQGridHandler.ashx',
datatype:'json',
colNames:[], // here something to skip and load all columns from the file
colModel:[],
mtype:'POST',
loadonce:true,
viewrecords:true,
caption:"Database Table"
});