jqGrid - 当加载一次为 true 时,子网格不起作用
我在使用子网格时遇到问题。我想使用 loadoce 的好功能(本地搜索等)。我也想使用子网格。 但将它们放在一起是行不通的。我不知道这是一个错误还是我错过了一些东西。
如果我设置 loadonce:false,子网格就可以工作。
我尝试了 3.7.1 和 3.7.2
或者我应该一次只使用一个? 非常感谢!
I have a problem to use subgrid. I want to use the nice feature of loadoce(local search etc.). And I also want to use subgrid.
But it doen't work to put them together. I don't know if it's a bug or I miss some thing.
If I set loadonce:false, the subgrid works.
I tried both 3.7.1 and 3.7.2
Or should I only use one at a time?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 JQGrid 3.8 中是可能的,至少在 - 和 4.0 中是可能的(我没有尝试过 JQGrid < 3.8)。
如果您想使用
loadonce:true
,请务必设置您的subGridType
,因为这将覆盖datatype:X
的更改>(其中 X 是您设置的值)到datatype:local
(对于您的子网格)。您可能知道必须设置editUrl:clientArray
才能使本地搜索正常工作。我正在使用您想要的设置的网格示例:
This is possible in JQGrid 3.8, at least - and 4.0 (I have not tried JQGrid < 3.8).
Please be certain to have your
subGridType
set, if you want to be usingloadonce:true
, as that'll override the change fromdatatype:X
(where X is what you set it to) todatatype:local
(for your subgrid). You probably know you'll have to seteditUrl:clientArray
for the local searches to work.An example from a grid where I'm using the settings you want: