1

我有一个包含三个字段的记录,它们都是下拉列表。如果它们是独立的记录,这一切都很好,但是我希望如果您更改第一个下拉列表,那么第二个下拉列表中的项目列表会更改吗?这在 jqgrid 中是否可能。

我的代码的简化版本现在看起来像这样:

jQuery("#marketDataGrid").jqGrid({
    mtype: "POST",
    url: "/Application/MarketData/" + id,
    datatype: "json",
    colNames: ["", "Id","Source", "API"],
    colModel: [
        { name: "ApplicationId", index: "ApplicationId", hidden: true, width: 0, editable: true, editoptions: { readonly: true} },
        { name: "Id", index: "Id", hidden: false, width: 30, editable: false, editoptions: { readonly: true} },
        { name: "MarketDataSource", index: "MarketDataSource", editoptions: { dataUrl: "/MarketDataSource/GetSelectDataRequired" }, editrules: { required: true }, editable: true, edittype: "select", width: 155, stype: 'select', searchoptions: { sopt: ['eq', 'ne'], dataUrl: "/MarketDataSource/GetSelectData"} },
        { name: "API", index: "API", editoptions: { dataUrl: "/API/GetSelectDataRequired" }, editrules: { required: true }, editable: true, edittype: "select", width: 155, stype: 'select', searchoptions: { sopt: ['eq', 'ne'], dataUrl: "/API/GetSelectData"} }

    ],
4

1 回答 1

2

在 jqGrid 中没有简单的方法来实现依赖选择。尽管如此,我在演示中从答案中展示了如何实现依赖选择。我在树案例中演示了实现:内联编辑、表单编辑和搜索工具栏。

在您的情况下,您在引用的演示中使用dataUrleditoptions不是使用。value然而,实现可以基于相同的想法。change您可以为“主”选择注册事件$.ajax并向服务器发出请求以获取从属选择的选择选项的子集。在你的success手柄内部$.ajax将能够像我的演示一样做同样的事情。

于 2012-08-30T06:16:49.403 回答