I have a div that has 7 different elements that I want to make readonly. Right now I have the following script that is setting all non kendo items to readonly
$("#GroupBox").find('input, label').attr("readonly", true)
I have 4 dropdownlists, 2 sliders, and 1 datepicker that I also want to make readonly. I know that I can set each of them individually, but is there an easier way? something similar to what I can do for non kendo component?
