Hi,
I have a repeated attribute in a repeating table in an E-Form form, i want to loop and get the summation of this repeated field and put the result in another field in the same E-Form. I developed a custom action and used
String txtValue = ((Text)component.getControl("cch_weighted_score", Text.class)).getValue();
but it returns null, I expected it to return a a comma separated string that I'll use it to get the summation.
How could I access this repeating field from the custom action, Any Help?