Hi Everybody:
I was able to get the pager to display below the footer, but now as I return to the this page after briefly leaving (ie. soft-reload as opposed to hard-reload), the pager disappears until I do a hard-reload. Is there a function to ensure that it renders each time the page is loaded (ie. soft-reload)?
Code below
var pagerAhere = {
view:'pager',
id:'pagerA',
template:"{common.first()} {common.prev()} {common.pages()} {common.next()} {common.last()}",
container:"pagingBottom",
size:10,
group:5
};
var grid = {
view:"datatable",
id:"data",
columns:dColumn,
select:"row",
autowidth:true,
autoheight:true,
pager:"pagerA",
data:dData,
footer:true
};
webix.ui({
container:"areaA",
rows:[ toolbar, grid, pagerAhere]
})