pager disappears on soft-reloads

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]
			})	

Sorry, but I’m not sure - what do you mean by soft-reload ?

I mean … redirect.
So, when people click to main home page (ie. index.php).
They click to something like Shopping (ie. /shopping/index.php).
The content (which contains webix forms/elements) are written to a webix_content div.
So, the first time, the pager pagination is rendered properly, but as people click out and back to the same page, the pager no longer renders unless CTL-R (ie. hard reload).
I understand that you may not understand the question.
Basically, is there a function or event trigger to ensure the pager is rendered regardless where the click from?

Fixed it. Thanks guys.