I am looking for a way to prevent clicks on all controls on the page without needing to individually change their enabled / disabled property.
The following code succeeds in locking everything, but does not allow events within the #seqf form.
$('body:not(#seqf *)').css( 'pointer-events', 'none' );
Realistically, what I have is a page with many controls, trees, linkbuttons, comboboxes etc etc, and when a user does something, I want to lock everything except for specific fileds on the form and specific buttons such as the save button.
Any suggestions on how I can achieve ths without needing to set / rest each control individually ?