TOC : Script API > JavaScript > JavaScript API > Component > Multiplex > Table > Method >

 

GetDataSetRowIndex

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

TOC : Script API > JavaScript > JavaScript API > Component > Multiplex > Table > Method >

 

GetDataSetRowIndex

 

 

Gets the cursor index of the current row.

 

 

 

Prototype :

 

integer GetDataSetRowIndex

(

        [ string DataSetPath ]

)

 

 

 

Arguments :

 

DataSetPath

DataSet Path in the form of "ODI name.dataset name"

can be omitted or set to null or ""

 

 

 

Reference :

 

An One-Based Index will be returned.

 

If dataset path is omitted or set to null or "", the dataset path of the table will be applied.

 

 

 

Example :

 

//ODI name : Sample, dataset name : Orders

 _TraceLn(This.GetDataSetRowIndex("Sample.Orders"));

 

//ODI can be omitted

 _TraceLn(This.GetDataSetRowIndex("Orders"));

 

//Dataset path can be omitted or set to null or ""

  _TraceLn(This.GetDataSetRowIndex());

  _TraceLn(This.GetDataSetRowIndex(null));

  _TraceLn(This.GetDataSetRowIndex(""));

 

 

 

Available Events :

 

OnBind,  OnStartBind