I would like to fire a RadComboBox's SelectedIndexChanged event from another function in JS. For a standard dropdown list I would use "onchange()" but for the RadComboBox I get TypeError: RadComboBox1.onclick is not a function. Is there a way to fire a selectedindexchanged event from javascript on a radcombobox?
Example:
function
fireSelectedIndexChanged() {
var
comboBox = $find(
"<%=RadComboBox1.ClientID%>"
);
comboBox.onchange(); <---- fire selectedindexchanged event
}