These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Add more than 7 rows to table?

smilem
Registered: Apr 1 2008
Posts: 101
Answered

Hi, I downloaded example from:

http://www.adobe.com/devnet/livecycle/articles/AddingRemovingTableRows.pdf

I changed the code from:
if (nNumRow == 7) {
xfa.host.messageBox("The maximum allowable number of rows is 7. You cannot add any more rows.", "Warning", 3);
}

to:
if (nNumRow == 10) {
xfa.host.messageBox("The maximum allowable number of rows is 7. You cannot add any more rows.", "Warning", 3);
}

But I can't add more than 6 rows.
How can fix this??

My Product Information:
LiveCycle Designer, Windows
beachbumbali11
Registered: Mar 5 2008
Posts: 74
uh well that part of the script is only to display the warning message freind best off deleting that entire line of code and going to the binding tab and changing the max to 10
smilem
Registered: Apr 1 2008
Posts: 101
Thanks, that solved it