This is a migrated thread and some comments may be shown as answers.

MultiSelectFor cascade from DropDownListFor

1 Answer 67 Views
MultiSelect
This is a migrated thread and some comments may be shown as answers.
Carlos
Top achievements
Rank 1
Carlos asked on 19 Apr 2021, 04:31 PM

I have following DropDownListFor in a grid column

@{
    var selecItems = Enum.GetValues(typeof(Something)).OfType<Something>().Select(item => new
    {
        Text = item.Localize(),
        Value = item
     });
}
@(Html.Kendo().DropDownListFor(m => m)
            .DataTextField("Text")
            .DataValueField("Value")
            .BindTo(selecItems))

on the following column I have a MultiSelectFor. When user select an option from DropDownListFor must change MultiSelectFor datasource. Its possible?

1 Answer, 1 is accepted

Sort by
0
Ianko
Telerik team
answered on 22 Apr 2021, 10:20 AM

Hello Carlos,

Can you elaborate more by providing the setup of the Grid and the MuiltiSelect so that I have a clear idea of how the current scenario is implemented and provide assistance according to the specific case?

Regards,
Ianko
Progress Telerik

Тhe web is about to get a bit better! 

The Progress Hack-For-Good Challenge has started. Learn how to enter and make the web a worthier place: https://progress-worthyweb.devpost.com.

Tags
MultiSelect
Asked by
Carlos
Top achievements
Rank 1
Answers by
Ianko
Telerik team
Share this question
or