Hi all,
I am binding dropdownlist using jquery. when ever i changed the value in the dropdownlist server side selected index changed event not firing and dropdownlist is disappearing from the screen. Here is my code
<asp:DropDownList ID="dropdwon" OnSelectedIndexChanged="ddlTADropdown_OnSelectedIndexChanged"
Width="305px" runat="server" CssClass="DropDownList" EnableViewState="true" AutoPostBack="true" TabIndex="13">
for (var i = 0; i < Double_deduction_Incentives.length; i++) {
$('[id$=dropdown]').append($("<option>").val(Double_deduction_Incentives[i].Value).text(Double_deduction_Incentives[i].Text));
}
}
please help!
...
Go to the complete details ...