Wijmo UI for the Web
item Method
wijmo.grid Namespace > selectedRowsAccessor type : item Method
The zero-based index of the item to get.
Gets an object representing grid's row at the specified index.
Syntax
var instance = new wijmo.grid.selectedRowsAccessor();
var value; // Type: IRowInfo

// Parameters
var index; // Type:  number

value = instance.item(index);
function item( 
   index : number
) : IRowInfo;

Parameters

index
The zero-based index of the item to get.

Return Value

An object representing grid's row at the specified index.
Example
var row = $("#demo").wijgrid("selection").selectedRows().item(0);
See Also

Reference

selectedRowsAccessor type