Aaron Drake
unread,Aug 23, 2010, 6:25:40 PM8/23/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Blast Mojo
I have several different observes listening on a submit button:
this.addIntercept("around", "Submit", "BlockProceed", ...
this.addIntercept('before', "Submit","ShowOverlay", ...
this.addIntercept('before', 'ShowOverlay', 'GetValues', ...
THe sequence of events should be:
1. On click, run a check to determine if the submit should proceed
(otherwise BlockProceed)
2. On click, place an overlay to indicate that the submit is in
progress
3. Before displaying the overlay, populate a div with specific
information taken from the form inputs
This runs fine in FF, but the 'before' intercepts do not fire in IE8.
Is there logic about the 'around' parameter that I should be aware of?