- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
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
Views
Replies
0 Likes
Total Likes