silverstripe-reports/javascript/FeedbackAdmin_right.js

18 lines
445 B
JavaScript

Behaviour.register({
'#Form_EditForm' : {
getPageFromServer : function(id) {
statusMessage("loading...");
var requestURL = 'admin/feedback/showtable/' + id;
new Ajax.Request(requestURL, {
asynchronous : true,
method : 'post',
postBody : 'ajax=1',
onSuccess : this.successfullyReceivedPage.bind(this),
onFailure : function(response) {
errorMessage('error loading page',response);
}
});
}
}
});