I am using the following code to autonumber dynamic table rows:
this.rawValue = this.parent.parent.index +1;
but I would like the numbers to appear with a period - like this 1. or 2.
How do I add this?
this.rawValue = this.parent.parent.index +1 + ".";
does not work
Solved! Go to Solution.
Views
Replies
Total Likes
Perhaps you have too many parents
try: this.rawValue = this.parent.index + 1;
Views
Replies
Total Likes
Perhaps you have too many parents
try: this.rawValue = this.parent.index + 1;
Views
Replies
Total Likes
All set - thank you!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies