Versions Compared

Key

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

Name of JavaScript function to call when the item upload is successful. It receives the JSON webroutine response as argument.

Default value

Blanks – No callback function will be called.

Valid values

The name of the JavaScript function to call (single quoted string). The function should take a JSON webroutine object as a parameter.

Example:

     function successCB(wr) {

...

        var msgs = wr.messages();

...

        msgs.each(function(m) {

...

           alert("Message: " + m);

...

        });
}