Hi
I have a computed text formula thus:
column1values := @DbColumn(“”:“NoCache”;“”;“Varchivenews”;1);
column2values := @DbColumn(“”:“NoCache”;“”;“Varchivenews”;2);
column3values := @DbColumn(“”:“NoCache”;“”;“Varchivenews”;3);
column4values := @DbColumn(“”:“NoCache”;“”;“Varchivenews”;4);
column5values := @DbColumn(“”:“NoCache”;“”;“Varchivenews”;5);
dbFilePath := “/” + @ReplaceSubstring(@Subset(@DbName;-1);“\”;“/”);
tableRows := “”;
rowNumber := 1;
@DoWhile(
tableRows := tableRows +
"
“<li class="greenBullets">” +
“<a href="” + dbFilePath + “/Vlivenewsbyid/” + @Subset(@Subset(column4values;rowNumber);-1) + “?OpenDocument" title="” + @Subset(@Subset(column3values;rowNumber);-1) + “">” +
@Text(@Subset(@Subset(column3values;rowNumber);-1))
- “<font size=2 class="greenText"> (” + @Text(@Subset(@Subset(column5values;rowNumber);-1)) + ")
rowNumber := rowNumber + 1;
rowNumber <= 50);
“
” + tableRows + “This effectively builds a table that I display on the web. I am doing it this way as I find it easier to control all the table settings. The problem is that I can only get about 60 rows of data before it says that it is exceeding the maximum allowed size. I have tried putting the code into a rich text field but it still hits the limit.
I don’t really want to back to square one so i was wondering if there is a way to do this that will circumvent the problem ?
Thanks
Paul