Is there a way to specify what folder is open by default? It selects the first one but the one I want could be the 2nd or 5th
chris
1/15/2009 2:34 PM
Hi Chris,
Yes, there is a way to change this. Open FileVista\FileVistaControl\scripts\filevista.js and search for the below line:
treeNode.childNodes[0].select();
Change the index fom 0 to 1 to select the second root folder:
treeNode.childNodes[1].select();
Cem Alacayir
1/26/2009 12:00 PM