Link in a dynamic table
Can I add a link to each cell of a dynamic table?
I see that I can assign a link in the template table, but then, I would need to modify the URL of each link according to the position of the cell. How can I do it?
Thank you
I see that I can assign a link in the template table, but then, I would need to modify the URL of each link according to the position of the cell. How can I do it?
Thank you
Comments
I did not tried because before I tried to modify the Text property and it returned error. It is off-topic, but do you know why I get error when I change the Text property.
For example, in the multiplication demo, I put:
for (x = 1; x <= 10; x++)
{
// print the data column (second column in the template)
Cell12.Text="[x + 1]";
but then, in the preview I get "Name X does not exist".
I would need to change the Text property from the script. Is it possible?
Thank you
Cell12.AllowExpressions = false;
If I put [x + 1] from the designer, it works fine, but if it do the same from the script, I get an error.