I have some web views embedded in a $$ViewTemplateDefault. One of the columns has a fairly big amount of text that I want to span over mulitple rows.
In the view properties if I select a row height of 2+ lines the column alignment gets out of whack. The generated code contained seriously crazy nested tables, like 3 & 4 deep.
like:
–Header----Header----Header
–Column…-----Column…----Column
(the best I can do with plan text 
If I chose a row height of 1, I get a big run-on line which pushes the view table out of its container. The generated HTML contains embedded “nowrap” attributes in the cells. , no nested tables.
I tried wraping the column text in a , but that failed to override the previous “nowrap”.
Anybody know what’s going on here?
Subject: mysteriously fixed itself
The problem has mysteriously fixed itself. Maybe it was browser or server caching issue that was preventing updates in my styles???
Subject: RE: mysteriously fixed itself
Dear Mr Nicholaus,
it seems that what you are doing almost the same like mine, i want to make an
expandable and collapse view with my view which is have only one column and im
using script to to make it can expand between 2 categorized item in the column,
my script in the column goes like this :
“table border=‘0’ width=‘100%’><script
language="JavaScript">document.write("");
]”+Subject+“script language="JavaScript">document.write("");
]” +
“table border=‘1’ width=500 bordercolor=red>]”+Content2 +“/font>]”
but the problem is the expand and collapse view didn’t work. do you know how to
solve it?