I am new to the Kinetic environment and need assistance with creating a serial number for a grid when it is initialized. For instance, if the grid has 3 rows, each row should be assigned a serial number, such as 1, 2, 3.
If anyone knows how to implement this in Kinetic, I would greatly appreciate your guidance.
It would be good if you could access the row index for this…
In lieu of that, instantiate a Transview variable to 1 (or whatever number) then set a value and increment using the iterative event of a dataview-condition that iterates through the whole set…
Use row-update to set your TransView.Iterator, for example, to 1
then a dataview-condition to iterate the whole data view that you want numbered…
In your iterative event, row-update YourDataView.RowNumber = {TransView.Iterator},
then row-update TransView.Iterator = {TransView.Iterator} + 1