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