cancel
Showing results for 
Search instead for 
Did you mean: 

Adobe Form (add row to flowed table )

Former Member
0 Kudos

Hi, experts

I have a problem.

I need add a row to subform flowed table , but when i want to see preview a get an error:

"Invalid inumerated value: indexChange

the fault occured on line 1532.

Script failed ( language is formalic; context is xfa[0].form[0].data[0].#subform[0].SubFormTable[0].Table1[0].Row1[0])

script =

ERROR: no expression encountered -- script result is undefined

"

How can i solve this problem or how add row to flowed table in different way.

Thanks

Larissa

Accepted Solutions (0)

Answers (1)

Answers (1)

chintan_virani
Active Contributor
0 Kudos

Larissa,

Did you drag the Table element from standard library and used the first option of Create Simple Table? This should make the table static and you cannot add a row. Select the second option while creating a table and choose "Body Rows vary depending on data".

Now drag-drop a button element from the standard library and in the click event make sure you have following code in JavaScript:-

Table1.Row1.instanceManager.addInstance(1);

Chintan