mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
4cbc4642b6
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@39805 467b73ca-7a2a-4603-9d3b-597d59a354a9
21 lines
496 B
JavaScript
21 lines
496 B
JavaScript
Behaviour.register({
|
|
'#Form_EditForm' : {
|
|
getPageFromServer : function(id) {
|
|
statusMessage("loading...");
|
|
|
|
var requestURL = 'admin/feedback/showtable/' + id;
|
|
|
|
this.loadURLFromServer(requestURL);
|
|
|
|
/*new Ajax.Request(requestURL, {
|
|
asynchronous : true,
|
|
method : 'post',
|
|
postBody : 'ajax=1',
|
|
onSuccess : this.successfullyReceivedPage.bind(this),
|
|
onFailure : function(response) {
|
|
errorMessage('error loading page',response);
|
|
}
|
|
});*/
|
|
}
|
|
}
|
|
}); |