Wijmo UI for the Web
showSelectionOnRender Option
wijmo.grid.wijgrid Namespace > options type : showSelectionOnRender Option

Default value: true

A value indicating whether a selection will be automatically displayed at the current cell position when the wijgrid is rendered. Set this option to false if you want to prevent wijgrid from selecting the currentCell automatically.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijgrid("option", "showSelectionOnRender");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijgrid("option", "showSelectionOnRender", newValue);
        
});
var showSelectionOnRender : boolean;
Example
$("#element").wijgrid({ showSelectionOnRender: true });
See Also

Reference

options type
wijgrid jQuery Widget