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