I have an outdated ASP.NET application. We started rewriting our user interface to the Kendo user interface, but so far it still uses traditional ASP.NET server controls, and we use the Kendo interface to style the interface.
The page is a portal view with a large number of user controls loaded dynamically, depending on the context of the application.
One bit of functionality that we need is to disable all controls on the page (to show the page read-only). This works for parts of the page that have not yet been rewritten (that use the old ASP.NET server controls), but not for new modules that use the Kendo interface.
Is there a way to find all the Kendo UI interface elements on the page and disable them all?
Thank.
source
share