cascadingdropdown

CascadingDropDownList not working with anonymous access

Hi everyone, I use a CascadingDropDownList of the AJAXControlToolkit in a ASP.NET MCMS 2002 web application. The CascadingDropDownList works as expected until "Anonymous access" and "Integrated Windows Authentication" flags are both checked (and this is the situation in the production environment) in the Directory Security settings on th...

AJAX, PHP, XML, and cascading drop-down lists

What PHP libraries would you recommend to implement the following: Three dependent drop-down lists Three XML data sources AJAX-based Essentially, I'd like to create an XML database and wire up a form that allows the user to select three different dependent parameters: User clicks Region User clicks District (filtered by Region) Use...

AJAX CascadingDropdown - Setting the selected index

I have a CascadingDropDown on an ASP.NET page. Now, the prompt text is "Select State". (list of states). However, on a different version of this page (ie querystring), i might want to set the selected index to "California" for example. How can i do this? The web service used by the ajax control (ie GetStates) gets invoked at the same...

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 to the 3 CascadingDropDown but my problem is to rebind CascadingDropDown. simply what I want to do is to select a record from Gridview whi...

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 reference to your AjaxControlToolkit User Action: Select a value from each dropdown. Click Submit. After Postback: StatesDrop: (Selected va...

cascading dropdown value doesn't seem to get posted to my php page?

i am using cascading dropdownlist for showing states of a country... I get the country dropdown value but not the state dropdown value.... I am populating state values via ajax... echo $country = $this->input->post('country'); echo $state = $this->input->post('state'); When inspected through firebug it shows all the option values of...

CascadingDropDown in TabContainer and Target in other Tab

Hello, I have divised a page with a TabContainer. Before, this page worked with a CascadingDropDown that populate a DropDownList. Now this DropDownList is in another tab. So I catch an exception "Object Reference Null" when I try to see this page. How did runs to load a DropDownList in another Tab when I change a value in a different ...

How to create and populate cascading dropdowns from json (converted from csv)?

I have an html page and want to have 3 dropdown boxes (department name, course name, and course number). I want the user to select the department name first and this will trigger the course name dropdown then once the user selects the course name, the course number dropdown will be populated. I already have a csv file with all the info...

Accessing control between DataGridCells, dynamic cascading ComboBoxes

Hello. I have a DataGrid that two of its columns are ComboBoxes (one contains few but not this is the problem). I want, that when the user changes the first Combo's value, the ComboBox in the other column should bind to a property of its (this property is a collection). Say the First ComboBox is Category, I want that when the user chan...

Problem with cascading drop down in asp.net

Hello friends, I have two cascading drop downs on my page i.e. ddlInsCompanies and ddlInsAdjusters. Both the DDLs are data bounded using a web method from web service. The Cascading DDLs are working fine and i am able to save data as well. The problem here is that when i try to open up the record, the selected value for ddlInsCompanies...

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 there is only one option in the newly enabled combo I automatically select it, causing the one below it to become active. Consequently a single...

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 following never executes: $('#<%= ddlFromCompetition.ClientID %>').change(function() { $('#<%= ddlToCompetition.ClientID %>').value = $...

Invalid postback or callback argument. When clicking button

Hi, 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 cascadingdropdownlist extender is attached which calls a webservice each time the selection in the first dropdownlist is changed. This wor...

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: $("#<%= ddlFromCompetition.ClientID %>").change(function() { var fromValue = $("#<%= ddlFromCompetition.ClientID %>").val(); $("#<%= ddlToCompetition.ClientID %>"...

How to call ASP.NET AJAX CascadingDropDown raiseSelectionChanged()

Anyone know how to do this? This does not work: $get("<%= cddToCompetition.ClientID %>").raiseSelectionChanged(null); I have two separate CascadingDropDown controls, where a change in control A should trigger a change in control B (the one in my example). Control A is not the parent of B. ...

jQuery plugin dropdownchecklist wont update

I have a multiselect listbox with several different values, when a user selects values from first listbox another multiselect listbox gonna be populated with different values depending on the first listbox values. So far everything works as expected. The problem is that i'm using a jquery plugin called dropdownchecklist that transforms...

Disable one Selection Box based on a Selection in another

I have two selection boxes in the same form. I would like to have one disabled based on some of the options that can be selected in the other selection box. I'm looking for a solution in JavaScript if possible. ...

Error 500 - CascadingDropDown AJAX Extender toolkit control

Hi, I am trying to populate 3 dropdown lists with using CascadingDropDown. DDLs shows make, model and color of a car respectively. Data resides in a .xml file. The last DDL is having AutoPostBack = true and I am trying to display the values from dropdown in one label control. I am pulling data from a webservice to populate DDLs. I a...

CSS Menu Problem

I have this CSS Menu. It's fully functional. But when I put it in my page inside some table cell, it blows up like this. Don't mind the silver and the blue lines, they are from the page. Now I have debugged the page and the menu itself. No error still this weird behavior. Then I got another menu and put that in here and it showed t...

Cascading dropdown empty after postback

A form contains 2 cascading dropdowns. When an item is selected in the first dropdown, jQuery retrieves a list (json) from the server and fills the 2nd dropdown. The user posts the page to the server, and when the page is returned the dropdown is empty because its not stored in viewstate. What do you do in this situation? Is this the ...