Wijmo UI for the Web
totalRows Option

Default value: 0

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
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  number
    returnsValue = $(".selector").wijgrid("option", "totalRows");
    
    // Set value
    var newValue; // Type:  number
    $(".selector").wijgrid("option", "totalRows", newValue);
        
});
Javascript (Specification) 
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.
Browser Compatibility
7
5
5

See Also

Reference

options type
wijgrid jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.