Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 3 drop-down list [State,District,City], on selecting state, district is populating and on selecting district city is populating jquery change event [all ajax calls].

so while editing data, on page load i am populating all states

var StateId = stateclass.StateId";

$('#<%= ddlStates.ClientID %>').val(zStateIdL);

$('#<%= ddlStates.ClientID %>').change(); 
//force to trigger on change to get    district data get populates.

//this will set the value of given state id, and district drop down will get populated.
var DistrictId = stateclass.districtId;
$('#<%= ddldistrict.ClientID %>').val(DistrictId);

But the value of district is never get set. any helps appericated

share|improve this question
mind formatting your code – experimentX Mar 18 '11 at 7:00
first post. next time onwards, will try in code formating. i need a answer for this questions soon. – user665607 Mar 18 '11 at 9:05
are you using asp? i am no good with asp. but can help with jquery – experimentX Mar 18 '11 at 9:09
jquery library in asp.net, javascript with jquery – user665607 Mar 18 '11 at 9:16
I don't know the answer then. I am zero at asp.net, also try to make catchy title. someone knowing might see and answer. – experimentX Mar 18 '11 at 9:18
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.