mathieu cupryk
Top achievements
Rank 1
mathieu cupryk
asked on 07 Sep 2009, 05:25 AM
I need to find a control for an application for work.
List the countries
then state/provinces
then cities/region.
Three dropdownlist.
List the countries
then state/provinces
then cities/region.
Three dropdownlist.
5 Answers, 1 is accepted
0
Princy
Top achievements
Rank 2
answered on 07 Sep 2009, 10:10 AM
Hello Mathieu,
Here's exactly what you are looking for! Check out the demo below:
Related ComboBoxes
The demo illustrates on using combobox instances on a page which can interact with one other based on client-side events and thereby request the items on demand on the client-side using the requestItems() method. Take a look at the 'Example Source Code' in the demo and probably it should help you achieve the required.
-Princy.
Here's exactly what you are looking for! Check out the demo below:
Related ComboBoxes
The demo illustrates on using combobox instances on a page which can interact with one other based on client-side events and thereby request the items on demand on the client-side using the requestItems() method. Take a look at the 'Example Source Code' in the demo and probably it should help you achieve the required.
-Princy.
0
Hello mathieu,
Please take a look at this example that we believe shows the needed approach.
Regards,
Paul
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Please take a look at this example that we believe shows the needed approach.
Regards,
Paul
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
mathieu cupryk
Top achievements
Rank 1
answered on 07 Sep 2009, 08:05 PM
It is not fully populated.
0
mathieu cupryk
Top achievements
Rank 1
answered on 07 Sep 2009, 08:28 PM
Where can I get the db TelerikConnectionString?
SqlConnection connection = new SqlConnection(
ConfigurationManager.ConnectionStrings["TelerikConnectionString"].ConnectionString);
SqlDataAdapter adapter = new SqlDataAdapter("SELECT * FROM Continents ORDER By Name", connection);
DataTable dt = new DataTable();
adapter.Fill(dt);
SqlConnection connection = new SqlConnection(
ConfigurationManager.ConnectionStrings["TelerikConnectionString"].ConnectionString);
SqlDataAdapter adapter = new SqlDataAdapter("SELECT * FROM Continents ORDER By Name", connection);
DataTable dt = new DataTable();
adapter.Fill(dt);
0
Hello,
Connection strings can be found in web.config.
Sincerely yours,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Connection strings can be found in web.config.
Sincerely yours,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
