I have several telerik radcomboboxes inside a div with various id’s. I want to find all of them and disable them without using those id’s like say finding the tag name using javascript.
Please help
I have several telerik radcomboboxes inside a div with various id’s. I want to
Share
Each RadControl renders a specific CSS class identifying the type of the control on the control container element. Additionally the JS object is an expando of the container element –
control.So, you can use this:
$('.common-container-class-name .RadComboBox').each(function() { this.control.disable(); });