cancel
Showing results for 
Search instead for 
Did you mean: 

Find the Node size using FormCalc script

Former Member
0 Kudos

Experts,

I have a requirement to find the size of the Node using FormCalc script. I'm using Webdynpro Java. Could any one of you provide a way to achieve this?

Kind regards,

Saravanan K

Accepted Solutions (0)

Answers (1)

Answers (1)

chintan_virani
Active Contributor
0 Kudos

Saravanan,

I had a field called ddList in my form and used below code in JavaScript to get length of node:-

var len = ddList.items.nodes.length;
xfa.host.messageBox("Node Length is :"+len);

Chintan