Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究 JQGrid,我对如何实现有疑问。
当前,每次都向用户显示标准结果集,如示例中所示。
colNames:['Inv No no NO','Date', 'Client', 'Total in EUR']
假设如果要更改此结果集,我将更改 JqGrid 的 .js 文件(添加或删除列)。
有什么方法可以将这些列名从 Table 中取出并将其绑定到 JqGrid 吗?
另外我如何在运行时添加列名?像添加新列和所有。
谢谢
在里面loadComplete()尝试以下代码将列名动态更改为一个值。
loadComplete()
$("#grid_id").jqGrid('setLabel',"column_name", 'new_label');
您可以解析colModel以获取您希望更改的特定列以执行相同操作。
colModel