Here is an easy way to make an embedded view (displayed using HTML) scrollable in a table cell.
Copy the code below into your form and mark is as PassThru.
Using the overflow control "auto" and a tag, we add a vertical scroll bar to the view.
Sorry, but this was tested in IE5 only !
Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies. This was first published in June 2001
<table height="150" width="400" cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td colspan="2" bgcolor="#3366FF" >
<--Insert view name here-->
</td></tr>
<td bgcolor="#ffcc00" >
<--Insert links here-->
</td>
<td valign="top" height="130" >
<span style="height:100%;width:100%;overflow:auto">
<--Embed view here-->
</span>
</td></tr></table>
Requires Free Membership to View