Avatar

Level 2

Alex,

I can able to get the dynamic row values by using the following code on click of the button:

var

rowIM = xfa.resolveNode("page1.Table1.sectionRow").instanceManager;

var

j = 0;

for

(var i=0;i<rowIM.count;){

if

((xfa.resolveNode("page1.Table1.sectionRow[" + i + "].Item.Quantity").rawValue == null) || (xfa.resolveNode("page1.Table1.sectionRow[" + i + "].Item.Cost").rawValue == null)){

j

++;

break

;

}

i

++;

}

if

( j > 0)

{

displaymessage1();

}

if

(i == rowIM.count)

{

app.alert("Form Submitted...");

}

function

displaymessage1()

{

app.alert("Please enter all values");

}

Thanks,

Susila S