如何静态加载子网格?
我不想使用 ajax 在我的网格中加载数据。有没有办法将所有数据静态加载到主网格和子网格?
在 jqGrid 文档的示例中,需要参数 subGridUrl
。但我想要类似的东西:
var mydata = [ {
// ... some static code for data creation here
} ]
并在参数 data
中使用 mydata,但 subGrid 没有这个参数或其他参数。
I don't want use ajax to load data in my grid. Theres a way to load all data to main grid and subgrids statically?
In the samples from jqGrid Documentation, the parameter subGridUrl
, is needed. But I want something like:
var mydata = [ {
// ... some static code for data creation here
} ]
and using mydata in parameter data
, but subGrid don't have this parameter or something else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 子网格作为网格,则必须在其中创建新网格
subGridRowExpanded
回调。回调获取rowid
作为参数。因此,如果您想要获取可用作子网格的data
参数的数据数组,则可以使用datatype: 'local'
定义子网格。代码架构可以是以下内容:
If you use subgrid as grid you have to create new grid inside of
subGridRowExpanded
callback. The callback getrowid
as a parameter. So if you would get the array of data which can be used asdata
parameter of the subgrid the subgrid can be defined withdatatype: 'local'
.The code schema can be about the following: