gpt4 book ai didi

jqgrid - jqgrid colModel中的Index属性有什么用?

转载 作者:行者123 更新时间:2023-12-03 23:44:14 25 4
gpt4 key购买 nike

我是 jqGrid 的新手,谁能解释一下 jqgrid colModel 中 Index 属性的用途

最佳答案

如果您使用datatype: "json"datatype: "xml" 没有额外使用loadonce: true 参数,那么数据的排序和过滤必须在服务器 端实现。例如,如果您将列定义为

{ name: "colName1", index: "colIndex1", ...}

然后,如果用户单击列标题,jqGrid 将使用参数 sidx=colIndex1 向服务器发送 Ajax 请求。因此可以使用 index 选项来保存数据库中字段的名称,以简化相应 SELECT 语句的 ORDER BY 部分的构建。

在大多数情况下,需要使用与name 属性相同的index 属性。如果使用 datatype: "local" 或使用 datatype: "json"datatype: "xml" loadonce: true 一起收集 数据将本地保存在 data_index 中的网格中内部选项。在这种情况下,需要使用 index 值,这些值来自 colModelname 属性。在这种情况下,强烈建议不要在 colModel 中指定任何 index 属性。在这种情况下,jqGrid 将使用 name 属性。

关于jqgrid - jqgrid colModel中的Index属性有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27546717/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com