Tagged Questions
The cascadingdropdown tag has no wiki summary.
12
votes
1answer
8k views
Easiest way to create a cascade dropdown in ASP.NET MVC 3 with C#
I want to create two dropdown lists in a cascade using MVC3 (preferably Razor) with C#.
I would like to have one dropdown where you can choose the year and another one where you can choose a specific ...
6
votes
4answers
9k views
ASP.NET MVC - Cascading Drop Down
I'm currently learning ASP.NET MVC and using Nhibernate.
I would like to use Cascading Drop-Down Boxes. Has anyone managed to get cascading drop-down boxes working in MVC?
Updated:
I have looked at ...
3
votes
3answers
1k views
AJAX CascadingDropDown ViewState Problem
Question: How do I maintain both the contents (from queries) and selected value of both dropdowns after postback?
Source Code: Download my source code from this link (link now works). Just add a ...
2
votes
2answers
128 views
Cascading Drop Down Lists with Lambda Expression in LINQ
I have a series of drop down lists that cascade, but instead of the list options being excluded from the list according to the user's selection, the unrelated options in the list are disabled. They ...
2
votes
3answers
301 views
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 ...
2
votes
1answer
2k views
Problems with AJAX CascadingDropDown and DropDownList SelectedValue in EditItemTemplate
I am having problem in EditItemTemplate of FormView.
When I use such code in InsertItemTemplate everything works:
<asp:DropDownList ID="Lic_PosiadaczLicencjiIDDropDownList" runat="server"
...
2
votes
1answer
535 views
jQuery Change Value of ASP.NET AJAX CascadingDropDown
I can use jQuery to change the value of a CascadingDropDown, but the event that fires which causes the target control's child dropdown to populate with data never happens:
$("#<%= ...
1
vote
1answer
31 views
How to change the visibility of CascadingDropDown control
What is the preferred method to change the visibility property of a .NET AjaxToolkit CascadingDropDown control? I would like to render the control "invisible" when a null value is returned from a ...
1
vote
1answer
244 views
how can one create a master detail cascading dropdowns with json and knockoutjs?
A simple master details scenario:
list of servers
int id
string Name
List<Driver> Drivers
where Driver also has an Id and Name.
returned as JSON from MVC Action on server.
Now i have a ...
1
vote
1answer
421 views
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 ...
1
vote
1answer
386 views
How to use a Cascading dropdownlist with Globalization of Views in MVC3
I am making an asp.net mvc solution with globalization.
I have implemented globalization using resource files (Resources.fr.resx & Resources.nl.resx) and
routes.MapRoute(
...
1
vote
2answers
1k views
asp dropdownlist - server side SelectedIndexChanged only fires when the mouse is used, not when the selection is set via code… Can anyone help?
New to posting here, but I've read a lot of the other threads & found great answers in the past! I'm hoping someone knows why this may be happening... On my DDL the server side ...
1
vote
2answers
3k views
Invalid postback or callback argument. When clicking button
I have a web page with various controls. Two of them are dropdownlists. The first dropdownlist gets populated from an xml file on the page_load event. This works fine. To the first dropdownlist a ...
1
vote
0answers
205 views
CascadingDropDown onchange handler
Is it possible to use an jQuery change() handler with an ASP.NET AJAX CascadingDropDown? I'd like to change the value of another dropdown on the page, which is unrelated to the cascading behavior. The ...
1
vote
1answer
205 views
Events in cascading combo boxes
I have created a WinForms user control that is a set of five cascading combo boxes - the user selects something from the top combo which then populates and enables the second combo, and so on. If ...
1
vote
4answers
3k views
C# ASP.NET AJAX CascadingDropDown Selected value property problem
Greetings,
I have a problem to use selected value propriety of CascadingDropDown.
I have 3 asp dropdown controls with ajax CascadingDropDown for each one of them.
I have no problem to bind data ...
1
vote
2answers
2k views
ExtJs Cascading-Combos Issue
I Have an issue (maybe it will be my mistake using incorrectly ExtJs, I hope I do) using ExtJs to do a cascading-combos in a form. This is the situation:
I have 3 combos, Zones, Regions, Cities
When ...
1
vote
2answers
4k views
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 ...
1
vote
1answer
1k views
CascadingDropDown Error - 'options' is null or not an object
I have five DropDownLists linked together with the CascadingDropDown AJAX control. When it's running locally, they work fine. However when running on the production server over the internet, I get ...
1
vote
2answers
1k views
Can you have cascading report parameters from a dropdown to a textbox?
I have a SQL Server 2005 Reporting Services report with three parameters I'd like to implement some kind of dependency relationship between.
The first parameter is DateRange
which is a drop down ...
0
votes
0answers
12 views
CascadingDropDown not binding to database after converting to .net 4
I have a CascadingDropDown list that is populated from my database via a CascadingDD.asmx file - the drop down lists are situated within a formview control that edits or inserts news articles to my ...
0
votes
0answers
52 views
ASP CascadingDropDown control does not reload on postback
I have a web form page that contains two modes: View and Edit. When in view mode, I do not load the CascadingDropDown control. When in edit mode, I do load the CascadingDropDown control.
When in ...
0
votes
1answer
56 views
Cascading DropDownList GridView ObjectDataSource
my page contains cascading DDL and grid view which working pure ajax.
the GridView taking data from sqlDataSouce which apply stored procedure that taking the DDL's values as parameters.
when i select ...
0
votes
1answer
29 views
Prob with resetting CascadingDropBoxList :S
thanks for reading, this is a bit long, but I hope someone can help me!
I've got the following set up:
On a webapp, I've got an updatepanel
Inside this update panel, I've got two regular panels and ...
0
votes
0answers
82 views
CascadingDropDown List not being reset properly after setting .SelectedValue = nothing
I have two panels. In each panel, I've got a group of CascadingDropDownLists.
Depending on a set of radio buttons (two buttons), i decide which cascading group comes up, and after each change of ...
0
votes
0answers
71 views
Cascading Dropdownlist; child list disabled. Service Method fails
I'm attempting to implement a cascading dropdownlist based on the following tutorial:
http://www.asp.net/ajax/tutorials/using-cascadingdropdown-with-a-database-cs
<%@ Page Title="" Language="C#" ...
0
votes
0answers
67 views
ASP.NET CascadingDropDown with some dropdowns disabled
Lets say I have three dropdowns. The user selects from dropdown1 which populates dropdown2 but dropdown2 must always be disabled.
Dropdown1: enabled, select a value
Dropdown2: disabled, selecting ...
0
votes
0answers
57 views
Set SelectedText of a CascadingDropDown to match TextBox content
I'm using the CascadingDropDown from the AjaxToolkit. I need to set the selected text to match the text content of a TextBox control on the page. I know the CascadingDropDown has a SelectedValue ...
0
votes
1answer
24 views
Cascaded Comboboxes and Entity Structure
In our ASP.Net project we've got a view with 3 (or even more) cascaded combo-boxes,
The question is how should we design our (NHibernate-based) entities given that the relationship between the ...
0
votes
1answer
62 views
ASP CascadingDropDown Control Causes IE Script timeout
Before a page is loaded, I use a subroutine to link DropDownList controls together:
Private Sub CreateCascadingDropDown(ByVal category As String, ByRef parentDDL As DropDownList, ByRef targetDDL As ...
0
votes
0answers
60 views
Dynamic Cascading DropDowns in SharePoint
I am working with ASAP.Net4.0 C# and SharePoint 2010. My requirement is I need a web part that display a empty textbox to start off with. User enter a number and that number of DropDowns get created ...
0
votes
0answers
57 views
CascadingDropDown not rendering values to TargetControlID
I have a simple custom control that contains two dropdown lists and a CascadingDropDown Control. The ajax control calls a WCF service and returns the values (verified in firebug) but the target drop ...
0
votes
1answer
122 views
VB.net Cascading ComboBoxes Connected to DataSet from Access - Changing Units, & Decimal to Fractions
I've got a fairly complex ComboBox scenario, and being new to programming I'm struggling with what the best approach to take is.
I have a DataSet with a DataTable that has several numeric columns of ...
0
votes
0answers
57 views
CascadingDropDown how check when data from webservice are bound
I am using CascadingDropDown which gets elements from webservice, more or less it looks like this:
<asp:DropDownList ID="DdlLevel1" runat="server" CssClass="Drop" ...
0
votes
2answers
80 views
How to return the appropriate results with JSON in order to populate cascading drop down lists?
I'm trying to populate a second drop down list (which contains counties) depending on what is selected on the first drop down list (which contains countries).
I have a controller action called ...
0
votes
1answer
1k views
Cascading Dropdown List in InfoPath 2010 with SQL Server 2008
I'm starting on some of my first InfoPath forms. I have a three drop down lists (Global Function, Major Task, and Subtask) which need to query a SQL database and filter their data based on the ...
0
votes
2answers
745 views
3 Dropdown List cascade using MVC3 & LinqSql
I have 3 dropdownlist i wanna make 3 dropdownlist with cascade. I am using LinqSql for database..
I have 3 tables Product(id,name), Design(id,master_id,name), Model(id,design_id,name)
master_id ...
0
votes
0answers
115 views
How do I get the selectedValue from a AJAX CascadingDropDown or its TargetControl DropDownList on the postback serverside
On my ascx-control I got 6 DropDownLists which all are populated client-side with the CascadingDropDown from AJAXToolKit and ServiceMethods - Its all going great until I want to submit my selections ...
0
votes
2answers
453 views
Cascading dropdown - How to temporarily disable change event on dropdown to manipulate the options
I built a cascading dropdown in jquery, modified from a few examples. I added a feature to let the user "back up" and reselect an earlier dropdown. This reloads the next dropdown, and clears and ...
0
votes
1answer
112 views
Binding dropdown when ajax form in submitted in mvc2 asp.net
My requirement is simple, there are two dropdowns in my view. First dropdown is filled be default and second dropdown has to be filled based on values from first dropdown.
My view is
<script ...
0
votes
1answer
341 views
Rails 3.1 Dependent / Cascading Dropdowns
I am getting to grips with Rails 3.1, and I am hoping that someone can point me in the direction of a Gem that will allow me to use dependent selects on a form (or indicate how this is best done in ...
0
votes
0answers
50 views
Multiple listdown box search results diplay error
The script is written to list the house details stored in a table. Houses page initially display the house information related to the query. The page consist of a form that includes districts and ...
0
votes
0answers
305 views
nested dropdown list control in javascript
Hi all
I am working on a web app and trying to code a form with a drop down lists.
I want to use cascading dropdown list i.e. i want to open a nested sub drop down corresponding to the value selected ...
0
votes
1answer
513 views
Cascade DropDownList using Jquery problem
So, I found this tutorial that had also the code source of the example showing how to make cascading dropdownlist using Jquery.
I tried to use that code for my own project example but it didn't seem ...
0
votes
1answer
287 views
JQuery/Ajax Cascading DropDown on javaScript blocked browsers
I will use Jquery or Ajax cascading dropdown lists feature with a web service written in c#.
The web site will be an e-commerce web site so the visitors could be out-of-date human beings and so their ...
0
votes
0answers
126 views
How to add multiple parents to a cascade dropdownlist?
How to add multiple parents to a cascade dropdownlist using Ajax controlkit ?
0
votes
0answers
432 views
how to assign existing value to cascading dropdownlist?
i have two cascading dropdownlist once i click on edit but i wanna load existing dropdownlist value to form but when i'm send the data it's not show correctly
i use to bind dropdownlist using web ...
0
votes
1answer
491 views
jquery cascading drop down problem
I'm using jquery to bring up a second and third drop down menu based on the selection of the first and second menus.
The method I've adopted is to have all the subsequent drop downs as ...
0
votes
1answer
481 views
WPF .Net 4.0 Datagrid, cascading comboboxes not cascading on cell update, only after row update
I'm new to WPF and I'm finding that the WPF .Net 4.0 Datagrid doesn't appear to handling cascading comboboxes. Only after focus is removed from a row do the cells populate correctly with the right ...
0
votes
1answer
191 views
How do i know Cascading Drop Down is loaded
I have used Cascading Drop Downs (for Make and Model) in my web form. I am using webmethod from webservice to bind the CDDs.
Following is the code -
<asp:DropDownList ID="ddlMakes" ...