the total number of records that the pager will process
var myPager = webix.ui ({
view:"pager",
container:"paging_here",
count:5000
});
The parameter has sense only when ui.pager is used stand-alone.
The count and limit parameters are interchangeable and used in pair with the size parameter to limit the number of records to process.
count/size
) or, if one of these settings is not specified - equal 1
.If ui.pager is integrated with some Webix component, the total number of records to process will be generated automatically and the parameter (if it's set) will be ignored.
//if you set the 'count' parameter for this pager it will be ignored
var myPager = webix.ui ({
view:"pager",
container:"paging_here",
size:100
});
dtable = webix.ui({
view:"datatable",
pager:myPager,
...
})