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

Default value: -1

Gets or sets the virtual number of items in the wijgrid and enables custom paging. Setting option to a positive value activates custom paging, the number of displayed rows and the total number of pages will be determined by the totalRows and pageSize values.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  number
    returnsValue = $(".selector").wijgrid("option", "totalRows");
    
    // Set value
    var newValue; // Type:  number
    $(".selector").wijgrid("option", "totalRows", newValue);
        
});
var totalRows : number;
Example
$("#element").wijgrid({ totalRows: -1 });
Remarks
In custom paging mode sorting, paging and filtering are not performed automatically. This must be handled manually using the sorted, pageIndexChanged, and filtered events. Load the new portion of data there followed by the ensureControl(true) method call.
See Also

Reference

options type
wijgrid jQuery Widget