Hi All,
I have searched few links in SDN & solved some issues.
Now I was stuck up in reading table data.
I searched and implemented the below logic but still not able to read the table data.
So could you please let me know where I did a mistake.
This is all Off Line Interactive form.
var data1;
var norows = xfa.resolveNodes("data.sub.tableform.table1.row[*]").length;
for ( var i =0; i <norows; i++);
{
data1 = xfa.resolveNode("data.sub.tableform.table1.row["i"];
if(data1.MATNR.rawValue != null || data1.MATNR.rawValue != "");
{
xfa.host.messageBox("Sucess");
}
}
}
Regards,
Bharat