0

Hi i am hoping for some help. Hi there, I have a form with a dynamic table. I want that one cell (carcost) is default readOnly, when a button is pressed i want that cell to become open. however i can only get it to work on the first row, it will not work with subsequent rows. any advice is appreciated. i have tried:

carb.tblcar.Row1[*].carcost.access = "open";

and

carb.tblcar.Row1.carcost.access = "open";
jpee
  • 15
  • 4

2 Answers2

0

If I understood the question.

First you need to set: Repeat Row properties Repeat Row

Then "Add" button Script:

Page1.Table1.Row1.instanceManager.addInstance(true)

Unlock button script:

TextField1.access = "open";

See example in Form Designer: working example

Tihomir Budic
  • 309
  • 4
  • 13
  • Hi there. That part I know. The problem I have is I want to have the unlock loop through the entire dynamic table. I am not sure how to make that work. – jpee Dec 07 '16 at 15:01
0

Livecycle form with Loop Unlock

Tihomir Budic
  • 309
  • 4
  • 13