Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi friends,
I am using Jquery tab, I want to bind the data to the drop down list, on click of a tab. the drop down list is placed within the tab. I have several tabs. On each tab there are different drop down lists.
Posted
Updated 20-Dec-12 22:00pm
v2

1 solution

1) So basically for each tab subscribe on a click.
On tab click event handler you can reach to sender property which is actually the tab object.

Within this tab navigate (find) drop down list with usage of:
JavaScript
var dropDowm = $("#nameOfYourDropDown");


Then you might need to get some data from Web-service by requesting it with help of either $.Ajax or $.getJson methods.
In core of web-service i can advise to you to use either REST WCF or ASP.NET WebApi, by reason, that they use lighweight messaging pattern.

JavaScript
$.ajax({type:"GET",url:"http://somelink/getdata?parameter=paramvalue",
success:function(jsonStr){
//do some stuff for populate drop box here.....
}}
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900