Wijmo UI for the Web
currentCell Method
wijmo.grid Namespace > wijgrid type : currentCell Method
Zero-based index of the required cell inside the corresponding row.
Zero-based index of the row that contains required cell.
Sets the current cell for the grid.
Syntax
$(function () {
    var returnsValue; // Type:  wijmo.grid.cellInfo
    // Parameters
    var cellIndex; // Type:  number
    var rowIndex; // Type:  number
    
    returnsValue = $(".selector").wijgrid("currentCell", cellIndex, rowIndex);
});
function currentCell( 
   cellIndex : number,
   rowIndex : number
) : cellInfo;

Parameters

cellIndex
Zero-based index of the required cell inside the corresponding row.
rowIndex
Zero-based index of the row that contains required cell.

Return Value

Object that represents current cell of the grid.
Example
$("#element).wijgrid("currentCell", 0, 0);
Remarks
If you wish to hide the current cell, use (-1, -1) for the value.
See Also

Reference

wijgrid type
wijgrid jQuery Widget