Dynamic table + choose a row in Notes Client

Hi there,I need some help in order to finish a form that is giving me lots of headaches at the moment.

I have 2 multivalue text fields. From the first one I pick up the values to create the first column in a table (depending on the number of values I’ll get more or less rows). The second multivalue field gives me the path to some thumbnails and this is the formula for the second column of the table (which is actually computed value text):

b:=“”;

@For(n:=1;n<=@Elements(Path_thumbnails);n:=n+1;b:=b+Path_thumbnails[n]+“
”);

@Trim(b)

Therefore what I get is a table where the first column is a text and the second one is a matching thumbnail for that text. Then there is the problem:

I’d like to give the chance to the user to select a row. I have tried that by setting up the first field as a checkbox. The problem then is that the rows are not aligned which makes the look & feel of the table unacceptable.

As far as I can see there aren’t major problems in terms of building up the table if no row needs to be selected, however if a row needs to be selected I can’t see how to do that without losing the alignment. Another question is, if the row can be selected how I can get the values from that row?

Hope anybody can give me a light

Thanks,

Felix

Subject: Dynamic table + choose a row in Notes Client

Try to do it with the same For loop but using then , and !!

html:=“

”;

@For(n:=1;

n<=@Elements(Path_thumbnails);

n:=n+1;

html:=html+ “

html:=html+ “

);

@Trim(html) ;

I think you’ll obtain your table list.

”+ n + “ ” + Path_thumbnails[n]+“