mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
25 lines
469 B
JavaScript
25 lines
469 B
JavaScript
/**
|
|
* File: ReportAdmin.Tree.js
|
|
*/
|
|
(function($) {
|
|
$.entwine('ss.tree', function($){
|
|
/**
|
|
* Class: .cms-tree
|
|
*
|
|
* Tree panel.
|
|
*/
|
|
$('.cms-tree').entwine({
|
|
onmatch: function() {
|
|
// make sure current ID of loaded form is actually selected in tree
|
|
var id = $('.cms-edit-form :input[name=ID]').val();
|
|
if (id) this[0].setCurrentByIdx(id);
|
|
|
|
this._super();
|
|
},
|
|
onunmatch: function() {
|
|
this._super();
|
|
}
|
|
});
|
|
});
|
|
}(jQuery));
|