The current dom event model propagates the event from a leaf node (the source of the event) to the top root (document).
My question is this: Is there a way to trigger an event backwards? From body, make it go down the dom to the leaves?
I want to disable all form inputs in my form. They are all jquery ui widgets. I don't keep a reference of the elements in the main form component and when I submit I want to disable all of them. All my widgets bind to a custom dom event, called "field:disable".