WPCAPI.onpagedeleteThis is a featured page


boolean WPCAPI.onpagedelete()
This method is overridable and should not be called directly.

This event is fired whenever a user attempts to delete a page, but before the page is allowed to be deleted. By default, this method simply allows the deletion to occur.

Parameters
StringcellIDThe identifier for the cell being deleted.Required
StringmessageThe edit note entered by the user.Defaults to ""
Returns true if the deletion is allowed, false otherwise.

Usage:

Asynchronous
if( window.WPCAPI ) {
WPCAPI.onpagedelete = function( cellID, message ) {

var params =
"cellID=" + encodeURIComponent(cellID)
+ "&message=" + encodeURIComponent(message);

var request = new XMLHttpRequest();
request.open( "DELETE"
, "/path/to/deletePage?" + params );
request.onreadystatechange = function() {

if( request.readyState == 4 )
WPCAPI.onpagedelete_Callback( request.status == 200, request.statusText );
};
request.send(null);

return null;

};
}




superwomyn
superwomyn
Latest page update: made by superwomyn , Oct 29 2008, 4:24 PM EDT (about this update About This Update superwomyn Changing overload to override. - superwomyn

1 word added
1 word deleted

view changes

- complete history)
More Info: links to this page
There are no threads for this page.  Be the first to start a new thread.

Related Content

  (what's this?Related ContentThanks to keyword tags, links to related pages and threads are added to the bottom of your pages. Up to 15 links are shown, determined by matching tags and by how recently the content was updated; keeping the most current at the top. Share your feedback on Wetpaint Central.)