I'm using free tree menu COOLjsTree (<!-- m --><a class="postlink" href="http://javascript.cooldev.com/scripts/cooltree/">http://javascript.cooldev.com/scripts/cooltree/</a><!-- m -->) and have a problem with tree structure setup. The error message like TREE_NODES not defined.
This is structure definition:
var TREE_NODES = [
['Nieuws', null, null,
['Algemeen', '../pages/nieuws/N.html', 'body'],
['pers', '../pages/nieuws/N_pers.html', 'body'],
['referenties', '../pages/nieuws/N_refer.html', 'body'],
['links',' ../pages/nieuws/N_Links.html', 'body'],
],
['producten', null, null,
['Introductie', '../pages/producten/P.html', 'body'],
['Softpack', null, null,
['kenmerken', '../pages/producten/P_SP.html', 'body'],
['vergelijking', '../pages/producten/P_verg.html', 'body'],
['screenshots<br>videos', '../pages/producten/SP_screenshots.html', 'body'],
],
['Softpack Pro','../pages/producten/P_spp.html', 'body'],
['Softpack Sales', '../pages/producten/P_sps.html', 'body'],
['eTouch', '../pages/producten/P_etouch.html', 'body'],
['maatwerk', '../pages/producten/P_maatw.html', 'body'],
['webhosting', '../pages/producten/P_web.html', 'body'],
['webdesign', '../pages/producten/P_wdes.html', 'body'],
['demonstratie', '../pages/producten/P_aanvraag_demo.html', 'body'],
],
['Standaardisering', null, null,
['SSA', '../pages/SSA.html', 'body'],],
['Gebruikersforum', null, null,
['Introductie', '../pages/Gebrui_forum/G.html', 'body'],
['service', null, null,
['service updates', '../pages/Gebrui_forum/G_serv.html', 'body'],
['diensten', '../pages/Gebrui_forum/G_diensten.html', 'body'],
['opleidingen', '../pages/Gebrui_forum/G_oplei.html', 'body'],],
],
['support', '../pages/Gebrui_forum/G_suppo.html', 'body'],
['FAQ', '../pages/Gebrui_forum/G_faq.html', 'body'],
['tips & tricks', '../pages/Gebrui_forum/G_tips.html', 'body'],
]
];
I'm newbie in javascript and don't understand what happenning.
This is structure definition:
var TREE_NODES = [
['Nieuws', null, null,
['Algemeen', '../pages/nieuws/N.html', 'body'],
['pers', '../pages/nieuws/N_pers.html', 'body'],
['referenties', '../pages/nieuws/N_refer.html', 'body'],
['links',' ../pages/nieuws/N_Links.html', 'body'],
],
['producten', null, null,
['Introductie', '../pages/producten/P.html', 'body'],
['Softpack', null, null,
['kenmerken', '../pages/producten/P_SP.html', 'body'],
['vergelijking', '../pages/producten/P_verg.html', 'body'],
['screenshots<br>videos', '../pages/producten/SP_screenshots.html', 'body'],
],
['Softpack Pro','../pages/producten/P_spp.html', 'body'],
['Softpack Sales', '../pages/producten/P_sps.html', 'body'],
['eTouch', '../pages/producten/P_etouch.html', 'body'],
['maatwerk', '../pages/producten/P_maatw.html', 'body'],
['webhosting', '../pages/producten/P_web.html', 'body'],
['webdesign', '../pages/producten/P_wdes.html', 'body'],
['demonstratie', '../pages/producten/P_aanvraag_demo.html', 'body'],
],
['Standaardisering', null, null,
['SSA', '../pages/SSA.html', 'body'],],
['Gebruikersforum', null, null,
['Introductie', '../pages/Gebrui_forum/G.html', 'body'],
['service', null, null,
['service updates', '../pages/Gebrui_forum/G_serv.html', 'body'],
['diensten', '../pages/Gebrui_forum/G_diensten.html', 'body'],
['opleidingen', '../pages/Gebrui_forum/G_oplei.html', 'body'],],
],
['support', '../pages/Gebrui_forum/G_suppo.html', 'body'],
['FAQ', '../pages/Gebrui_forum/G_faq.html', 'body'],
['tips & tricks', '../pages/Gebrui_forum/G_tips.html', 'body'],
]
];
I'm newbie in javascript and don't understand what happenning.