You can't generally just put a line fee in a text string since
ultimately it's rendered as HTML and multiple spaces, linefeeds etc
are considered white space and converted to a single space.
You could try setting your title to 'title line 1<br />title line 2'.
If the 'br' tag is escaped and you see it rather than the line break
then you could use some jQuery to find the div that contains the title
and alter it's innerHTML directly.
I did this recently with a tablePane title since it's not dynamic and
I didn't want to have to refresh the table just to change the title.
From memory the jQuery was:
$(#idtablepane table caption).html('My new title<br />Line 2');
The easiest way to work this it to use the firebug plugin in firefox,
right click on the 'title' on your web page and select 'Inspect
element'. It will open a section and show you the html for that
location and the surrounding html. Find the nearest element with an
'id' and the use the syntax above to drill into the right component to
alter. The above reads:
1. Find the element with the 'id' idtablepane
2. Find a <table> as a child of that elememnt
3. Find a <caption> as a child of the table
4. Change the html contained within that <caption> element to the new
string.
This is very powerful for dynamic web pages. Caveat's are that if zen
changes is rendering model you may need to update the the jQuery.
Lawrence
> >
http://groups.google.com/group/InterSystems-ZEN/web/community-terms-a...