Web View with vertical Scroll Bar needed

Hello,

I’m struggeling to create an embedded view for a web site which should allow x entries. And if the total number of entries exceeds x then I want a scroll bar. This is to keep all views inside the design element for the web page.

Has anybody an idea how to achieve this?

My current HTML Code for the column looks like this:

unid := @Text(@DocumentUniqueID);

db := @ReplaceSubstring(@Subset(@DbName; -1); “\”; “/”);

url := “/” + db + “/”+@ReplaceSubstring(@ViewTitle;" “;”+“) +”/"+unid + “?OpenDocument”;

blank := “<img src="blank.gif">”;

dblank := “<img src="2blank.gif">”;

brblank := “
” + blank + blank;

“<table width="170" border="0" cellspacing="0" cellpadding="0"> ” +

"<td valign=\"top\" width=\"5\" height=\"16\">" + "</td>" +"<td  class =\"small\">" + "<a href=\""+ url + "\">" + PgName + "</a></b>" +"<br>"+ "</td>" +"</tr>"+ "</table>"

thanks

Subject: Web View with vertical Scroll Bar needed

Put your embedded view into DIV object and set overflow-Y attribute for DIV:

Your embedded view goes here

Best Regards,

Dima Pechersky