RecordIndex

Is it possible to add the ‘controller.RecordIndex’ so we do’nt have to type it manually every time. Or have I overlooked it?

Visible and ‘doubleclickable’ in the below versions:

2.0
//Get/Set the current record index
var current = controller.recordIndex;
controller.recordIndex = current + 1;

2.1

//Get/Set the current record index
var current = controller.getSelectedIndex();
controller.setSelectedIndex(current+1);