Hi,
I'm looking at the Basic Examples browser and I would like to use the
"Tree with tags" examples as an inspiration to build a custom browser.
My idea is to make a browser with two columns. Left is a tree with tags
and right is the "content" of that tree. According with the tags in the
tree the display and behaviour of the content will change. For example,
if the tree node is tagged with "code" the left browser will be and
executable pane, if not it will be just plain text.
For that I will like to change the order in which tags and children
names are shown in a tree with tags. I would like to have tags first and
children names second, which is the reverse order of what we have now. I
see in the examples that the message to build a tree with tags have the
form:
=[1]========================
a tree
display: [];
children: [];
tags: [].
============================
and I would like something with the form:
=[2]========================
a tree
display: [];
tags: [];
children: [].
============================
I tried to find the message for [1] at the GLMTabulator and
GLMTreePresentation but it's not there and I don't know where else to
look for.
How can I change the order of tags and children names in a tree with
tags presentation for a browser?
Thanks,
Offray