I have some content in my webix datatable. Within the application the content works fine with navigations. When I use the browser back/forward button I see the datatable duplicating. This is my webix code:
webix.ready(function(){
webix.ui({
container:"div",
view:"datatable",
columns:[
{ id:"username",
{ id:"email", header:"Email Address", minWidth:700, fillspace:1}
],
autoheight:true,
url:"urlToData.json"
});
});