Questions tagged [cascadingdropdown]

In graphical user interfaces, a typical collection of 'drop-down lists' or 'combo-boxes' which are connected in a hierarchical fashion. A well known example is a Country-State/Province-City combination.

A cascading drop-down is, in graphical user interfaces, a typical collection of 'drop-down lists' or 'combo-boxes' which are connected in a hierarchical fashion.

In a typical 3-control setup, for example, the values displayed in the third UI control depend on the selected value in the second control, whose available options in turn depend on the selected value of the first control. Whenever the first or second control changes its selected value, the dependent controls update their available options in response.

A Country / State-Province / City it is very well known example of this UI pattern.

496 questions
4
votes
1 answer

How do I bind the selected value of a kendoui dropdownlist to my model?

I have a KendoUI dropdownlist as follows: @(Html.Kendo().DropDownList() .Name("DeviceInterfaces") .OptionLabel("Select interface...") …
Null Reference
  • 11,260
  • 40
  • 107
  • 184
3
votes
1 answer

ASP.NET MVC – Set Selected Value of Cascading Drop-Down

I'm working on an ASP.NET MVC application and using NHibernate. I’m working on a cascading drop-down and have used Method 1 in the following website: link text Everything is working correctly, I just wondered if it was possible to set the cascading…
Ros
  • 634
  • 3
  • 18
  • 34
3
votes
1 answer

MVC 3 Cascading DropDownLists

I don't know how to exactly have Cascading DropDownLists My scenario is the next: Category has Items and Items have quantities depending on Establishment I want to have two DropDownLists one which you select a Category, next one is populated when…
sergioadh
  • 1,461
  • 1
  • 16
  • 24
3
votes
1 answer

Cascade Dropdown using react Hooks

Hi Guys I'm new to React. I am trying to create a cascade drop down list using react hooks and the way I did it works well but I feel something wrong in the way I did it. Please check this code and tell me there is a way that I can improve my…
Kanishka
  • 115
  • 2
  • 8
3
votes
3 answers

MVC Dropdown lists bound depending on the value of another dropdown list

I am trying to write an MVC webpage that has two drop down lists. The content of the second list depends on what is selected in the first. There does not seem to be a definitive way of doing this using built in MVC functions so I am going to have to…
Loofer
  • 6,841
  • 9
  • 61
  • 102
3
votes
1 answer

Show select field based on some other select option in flask

I am creating a flask form where I need to show a dropdown based on some other dropdown select field in Flask. I was able to do it with HTML, but finding it difficult to do the same in Flask form. routes.py : class RegistrationForm(FlaskForm): …
3
votes
1 answer

How can I get a cascading value in Blazor?

I have a form in which the user first selects a company in a dropdownlist, and then based of of this they can select a project from a dropdownlist. The projects queried from the DB are based on the user and the company. I have tried to follow an…
Kornelis
  • 65
  • 8
3
votes
0 answers

Cascading Dropdown in .NET Core Razor Pages(Without MVC/Controller)

Someone please give an example of cascading dropdown list in Razor Pages without MVC. I am using Entity Framework,I have a Model and in Pages a .cshtml page and a corresponding .cshtml.cs page, there is no separate view and controller. I have…
3
votes
1 answer

Cascade dropdown using JS not working

I have 3 dropdown, the values filled dynamically with mysql. Now, I'm trying to cascade the 3 dropdown, but JS script is not working. What I'm trying to do's: Case 1: If the user choose a value from dropdown #1, the value of dropdown #2 depends on…
User014019
  • 1,215
  • 8
  • 34
  • 66
3
votes
0 answers

Cascading Dropdown Binding On Edit Click Angular

I want to bind dropdowns in edit mode but with value selected according to each record My Edit View dropdowns on my webpage: Adult, Child and Infant (think airline booking site). In general, the Adult dropdown has options numbered 1-9, the Child dropdown has options numbered 0-8, and the Infant dropdown has options numbered…
Thiri
  • 211
  • 1
  • 3
  • 11
1
2
3
33 34