Power Table extension function configureEditor

Is there anyway to get the rowIndex in this extension function?
I’ve read articles about dynamic data but I want to show the list or not.

Example of what I’m trying to accomplish

if rowIndex != 0:
     return {'options': [(0, 'A Shift'), (1, 'B Shift'), (2, 'C Shift')]}

You can’t get it in that function. But that function can supply an editor object that will get the row index whenever it is asked to prepare to edit a specific cell. This will help you get started:

http://forum.inductiveautomation.com/search?q=TableCellEditor

1 Like