I have an expandable table in my form with add row and delete row buttons. If a row is deleted from the table using the button, it also deletes the text entered on the Document Number field on the header. What could be causing this?
Thanks.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi Cristina,
The easiest thing might be to set the binding on the Document Number field. By default fields on the master page have the binding set to none. If you could set the binding on this field the value will be retained.
Regards
Bruce
Views
Replies
Total Likes
Hi,
This sounds rather strange, should be a simple enough thing. Maybe there's something strange with the binding of the Document Number field.
Maybe if we can see the form. Can you upload it somewhere, like Google Docs, DropBox, etc and post a link here.
Regards
Bruce
Views
Replies
Total Likes
Hi Bruce,
Here is the link. If you can have a look it would be much appreciated.
AS-OPS-FRM-0003 Fault Report-C2 Master.pdf - Google Drive
Thanks.
Cristina.
Views
Replies
Total Likes
Hi Cristina,
The easiest thing might be to set the binding on the Document Number field. By default fields on the master page have the binding set to none. If you could set the binding on this field the value will be retained.
Regards
Bruce
Views
Replies
Total Likes
Hi Cristina,
I do not have access to your file because of my firewalls, so I can't help you directly in your code. I should also mentioned that I'm not a pro, but I do have a code that works to add or remove one row by clicking in one button AND only that new row, nothing else.
Maybe you will find it useful comparing my code and yours.
To ADD a row:
var newInst = _NAMEOFYOUROBJECT.addInstance(1);
to DELETE the newly created row:
3. Select the bottom, then Inside the Scripts: Click event place:
If ( _NAMEOFYOUROBJECT.count == 0 )
{
xfa.hostmessage (“Nothing to delete.”, “”, 1);
}
else {
_NAMEOFYOURBOJECT.removeInstance(1);
}
//////// _NAMEOFYOUROBJECT (yes, with the " _ " ) in your case will be the name of your row that you are multiplying in your table.
Views
Replies
Total Likes
Thanks Bruce. That solved the problem.
Views
Replies
Total Likes
Thanks for your reply but I've already solved the problem.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies