I have asp:panel on my page. At run time, I add controls to this panel, and I want to disable/enable all its controls as per business logic.
I tried with this:
document.getElementById('mypanel').disabled = true;
But it is not working.
Does anyone has any idea to make this work?
readOnlyproperty instead.