Home › Forum › Working with Tables › Adding row numbers to tables › Re: Adding row numbers to tables
April 6, 2010 at 8:00 am #5197
You can add row numbers using a hidden numeric field. Whenever you add a new row just get the value from this hidden field and use the setTableRows object command to set the first column value of the new row, Just increment the numeric value by 1 once you have set it and so the next new row will have the incremented value. You can have this logic in Row is added behavior. You can also decrement the number when you delete a row.
The only problem with this is that if you happen to delete a row in between rows and if you want to re-use that number. It is possible to do that, you need to implement additional logic to do this.