I need to know if I can add substantial data to the expanded javascript treeview?
Return to Recent Questions
Q:
I would like to add your tree structure to my web page. I need to know
if I can add substantial data to the expanded tree structure, for
instance:
Click here to expand product A
And here is the expanded content that takes up three paragraphs and
wraps itself etcetera all about product A
Can your deluxe-tree accept multiple lines and paragraphs with wrapping
in the sub items, or is it for one or two line menu data only.
A:
var tnoWrap=0;
You can also use <br> tags in the item text, for example:
var tmenuItems = [
["line 1<br>line 2"],
];
Return to Recent Questions
|