Hi. I have a problem with handling onchange event in input element of RadComboBox. My custom combobox control derived from RadComboBox and overrides OnLoad server event:
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
this.Page.ClientScript.RegisterStartupScript(this.GetType(),"blabla","$get('"+ this.ClientID + "_Input').onchange=\"AfterUpdate('" + this.ClientID + "')\";",true);
}
In resulted html I see:
<INPUT class="rcbInput" id="ctl00_hldrMain_ctl00_cmbDirectors_Input" style="DISPLAY: block" onchange="AfterUpdate('ctl00_hldrMain_ctl00_cmbDirectors')" name="ctl00$hldrMain$ctl00$cmbDirectors_Input" autocomplete="off" value="" />
onchange present but does not work. Please help.
onchange present but does not work. Please help.