Kendo UI Grid with Cascading DropDownList

后端 未结 3 1479
暖寄归人
暖寄归人 2021-02-06 06:17

I have a Kendo UI Grid on my Razor Layout which fetches data from the controller.

In this grid I wish to have a set of 3 DropDownLists which are:

ProductGr

3条回答
  •  萌比男神i
    2021-02-06 07:12

    Here is what I've done for GridEditMode.InCell. I have Client and Fund, each client have own list of Funds, so when user select client I need to only show Funds specific to this client

    View: Kendo Grid UI setup

        c.ForeignKey(p => p.ClientId, Model.Clients, "Id", "ClientName")
          .Title("Client")
          .Width(100);
        c.ForeignKey(p => p.FundId, Model.Funds, "Id", "Description")
          .EditorViewData(new {funds = Model.Funds})
          .EditorTemplateName("FundForeignKeyEditor")
          .Title("Fund")
          .Width(100);
       })
       .Editable(x => x.Mode(GridEditMode.InCell))
       .Events(e => e.Edit("gridEdit"))
    

    Now when user click on Fund you need to perform filtering of the datasource for funds, you do it on "gridEdit" event using JavaScript. You put this code in the same view/file as your code above

    
    

    Fund has "FundForeighKeyEditor" editor template, which you have to add in to Views\Shares\EditorTemplate folder. You can use any name, just make sure name of the file template matches name of the EditorTemplateName. In my case I used "FundForeignKeyEditor" as EditorTemplate and FundForeighKeyEditor.cshtml file

    FundForeighKeyEditor.cshtml

    @model FundViewModel
    
    @(
            Html.Kendo().DropDownListFor(m => m)
                .BindTo((System.Collections.IEnumerable)ViewData["funds"])
                .DataTextField("Description")
                .DataValueField("Id")
    )
    

    Here is a FundViewModel, it contains ClientId so I can perform filtering on it

    public class FundViewModel
    {
        public string Id { get; set; }
        public string ClientId { get; set; }
        public string Description { get; set; }
    }
    

提交回复
热议问题