Is there a way to find all the radsearchbox objects on a page on clientside? I know for comboboxes I would use the following code, but I'm not sure how to find for radsearchboxes.
for (var i = 0; i < Telerik.Web.UI.RadComboBox.ComboBoxes.length; i++) { var objComboBox = Telerik.Web.UI.RadComboBox.ComboBoxes[i]; alert('Combobox ClientId : ' + objComboBox.get_id());}