Avatar

Level 5

var aWords = [];

aWords.push(TextField1.rawValue);

aWords.push(TextField2.rawValue);

aWords.push(TextField3.rawValue);

 

aWords.sort();

this.rawValue = aWords.join(",");

If I use add row button to increase the TextField1. In this case if I remove TextField2, TextField3 and use only TextField1, how can I get value into summary field from increased TextField1 (TextField1[0], TextField1[1], TextField1[2]........)

Actually what happen when add row buuton is used that means what the name of increased fields is?