Answered
I'm needing to auto-calculate some rows in my table. I have one row, set to a minimum count of 3. It is set to add and delete rows as well.
Rows need to number as follows: 1.1, 1.2, 1.3, etc.
My script currently reads:
this.rawValue = (parent.parent.index) + 1 + .1;
Obviously, I'm missing something that is keeping it from calculating the second portion of my number (after the "point").
Any tips??
George Kaiser