Hi Gerard,
It is possible to skin either of these facets to mimic navigation2
behaviour?
One possible solution for this would be to set a stylesheet option on
the surrounding tr:navigationPane (eg. inlineStyle="text-align: left;").
In theory it should also be possible to set a styleClass on the
navigationPane and make the changes in the skin. I couldn't get this to
work on my quick test on it though. This is what i tried:
Set a styleClass on the Pane:
<tr:navigationPane styleClass="nav1" ...>
Skin the Pane in the css:
.nav1 af|navigationPane {
text-align: left;
}
This _should_ work, but i only got this to work for a global scope (i.e.
omit the ".nav1" in the css)
Hope this helps,
Torben