mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
8d370c9cb6
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@65882 467b73ca-7a2a-4603-9d3b-597d59a354a9
55 lines
1.1 KiB
JavaScript
Executable File
55 lines
1.1 KiB
JavaScript
Executable File
if(typeof SiteTreeHandlers == 'undefined') SiteTreeHandlers = {};
|
|
|
|
SiteTree.prototype = {
|
|
castAsTreeNode: function(li) {
|
|
behaveAs(li, SiteTreeNode, this.options);
|
|
},
|
|
|
|
getIdxOf : function(treeNode) {
|
|
if(treeNode && treeNode.id)
|
|
return treeNode.id;
|
|
},
|
|
|
|
getTreeNodeByIdx : function(idx) {
|
|
if(!idx) idx = "0";
|
|
return document.getElementById(idx);
|
|
},
|
|
|
|
initialise: function() {
|
|
this.observeMethod('SelectionChanged', this.changeCurrentTo);
|
|
}
|
|
|
|
};
|
|
|
|
SiteTreeNode.prototype.onselect = function() {
|
|
$('sitetree').changeCurrentTo(this);
|
|
if($('sitetree').notify('SelectionChanged', this)) {
|
|
this.getPageFromServer();
|
|
}
|
|
return false;
|
|
};
|
|
|
|
SiteTreeNode.prototype.getPageFromServer = function() {
|
|
if(this.id)
|
|
$('Form_EditForm').getPageFromServer(this.id);
|
|
};
|
|
|
|
function reloadSiteTree() {
|
|
|
|
new Ajax.Request( 'admin/report/getsitetree', {
|
|
method: get,
|
|
onSuccess: function( response ) {
|
|
$('sitetree_holder').innerHTML = response.responseText;
|
|
},
|
|
onFailure: function( response ) {
|
|
|
|
}
|
|
});
|
|
}
|
|
|
|
appendLoader(function () {
|
|
if($('sitetree')) {
|
|
var selectedNode = $('sitetree').getElementsByTagName('li')[1];
|
|
selectedNode.onselect();
|
|
}
|
|
}); |