Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Next, to modify the contents, you'll need to register an event handler for the Prototype AJAX call. As an example, put in a page extension on the page “userpackage/status” that looks something like this:

Code Block
languagejs
Ajax.Responders.register({
    onComplete: function(response){
    alert('hello');
    }
});

...