1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*##############################################################################
- # HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- ############################################################################## */
- /*
- Feel free to use your custom icons for the tree. Make sure they are all of the same size.
- User icons collections are welcome, we'll publish them giving all regards.
- */
- var TREE_TPL = {
- 'target' : '_self', // name of the frame links will be opened in
- // other possible values are: _blank, _parent, _search, _self and _top
- 'icon_e' : '/esp/files_/img/blank.png', // empty image
- 'icon_l' : '/esp/files_/img/line.gif', // vertical line
- 'icon_32' : '/esp/files_/img/base.gif', // root leaf icon normal
- 'icon_36' : '/esp/files_/img/base.gif', // root leaf icon selected
-
- 'icon_48' : '/esp/files_/img/base.gif', // root icon normal
- 'icon_52' : '/esp/files_/img/base.gif', // root icon selected
- 'icon_56' : '/esp/files_/img/base.gif', // root icon opened
- 'icon_60' : '/esp/files_/img/base.gif', // root icon selected
-
- 'icon_16' : '/esp/files_/img/folder.gif', // node icon normal
- 'icon_20' : '/esp/files_/img/folderopen.gif', // node icon selected
- 'icon_24' : '/esp/files_/img/folderopen.gif', // node icon opened
- 'icon_28' : '/esp/files_/img/folderopen.gif', // node icon selected opened
- 'icon_0' : '/esp/files_/img/page.gif', // leaf icon normal
- 'icon_4' : '/esp/files_/img/page.gif', // leaf icon selected
-
- 'icon_2' : '/esp/files_/img/joinbottom.gif', // junction for leaf
- 'icon_3' : '/esp/files_/img/join.gif', // junction for last leaf
- 'icon_18' : '/esp/files_/img/plusbottom.gif', // junction for closed node
- 'icon_19' : '/esp/files_/img/plus.gif', // junctioin for last closed node
- 'icon_26' : '/esp/files_/img/minusbottom.gif',// junction for opened node
- 'icon_27' : '/esp/files_/img/minus.gif' // junctioin for last opended node
- };
|