mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
15 lines
401 B
JavaScript
15 lines
401 B
JavaScript
|
/**
|
||
|
* Configuration for the left hand tree
|
||
|
*/
|
||
|
if(typeof SiteTreeHandlers == 'undefined') SiteTreeHandlers = {};
|
||
|
SiteTreeHandlers.loadPage_url = 'admin/bulkload/getitem';
|
||
|
SiteTreeHandlers.showRecord_url = 'admin/bulkload/show/';;
|
||
|
|
||
|
Behaviour.register({
|
||
|
'#Form_EditForm' : {
|
||
|
getPageFromServer: function (className) {
|
||
|
$('BulkLoaderIframe').src = 'admin/bulkload/iframe/' + className;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
});
|