Is it possible to use a hide and show layer to display comments with dynamic content drawn from a database in a dynamic table with repeating region?
I have a dynamic table with recordset and repeating region to display long runs of rent information. Some of the rows in my database have a field called CommentMarker which displays the word "view" and a second field called PropertyComment which contains the text of the comment. In the dynamic table I want to display the comment text in a popup textbox onMouseOver of the the word "view". I have successfully created a hide and show layer with CSS formatting that displays fixed text on a basic html page, but I want to draw text dynamically from my database to display in the relevant rows of my dynamic table. So far I can't get this to work. Does anyone have a suggestion?
(It does work with <td bgcolor="#F6F6F6"><div align="center"><a href="#" onclick="return false;" title="<%=(rsCooling.Fields.Item("PropertyComment").Value)%>"><%=(rsC ooling.Fields.Item("CommentMarker").Value)%></a></div></td> but this has no formatting.)