rock
Moderator
Posts: 687
Registered: 4/15/2003
Member Is Offline
|
| posted on 6/25/2004 at 10:59 AM |
|
|
Problem when upgrading from free version to PRO?
The main issue is difference in hierarchy stucture of two controls. Compare:
Tigra Tree Menu style:
var TREE_ITEMS = [
['Test', 0,
['Example']
]
];
Tigra Tree Menu PRO style:
var TREE_ITEMS = [
['Test', 0, 0, // Note: third parameter appears. It IS REQUIRED parameter in node definition. 0/null/{item scope settings} accepted.
['Example1'],
['Example2', 'link.html'],
['Example3',0,{'sb':'Status bar'}],
['Example4', 'link.html', {'tt':'Tool tip'}]
]
];
The purpose of the third parameter is to provide additional flexibility and usability via so called 'item scope settings'. It's not
required parameter for leaf items, but to keep correct items' order you should at least set it to zero when defining nodes.
More info about item scope settings and other Tigra Tree Menu PRO features you could find in the product documentation:
http://www.softcomplex.com/products/tigra_tree_menu_pro/docs/
|
|
|
headzup22
Junior Member
Posts: 3
Registered: 10/25/2005
Location: virginia
Member Is Offline
|
| posted on 10/27/2005 at 02:48 PM |
|
|
thank you works great
thank you works great
|
|
|
rock
Moderator
Posts: 687
Registered: 4/15/2003
Member Is Offline
|
| posted on 11/14/2005 at 11:13 AM |
|
|
See also Tigra Tree Menu PRO debug utility
|
|
|