There is a UI-Grid filters are, if you refresh the page, how to stay out of the screening criteria?
Maintain the data with using $localstorage
Sample key code
PageLoad()
{
if(localStorage.get("GridData")!=undefined)
{
GridLoad(GridData)
}
}
GridLoad(GridData)
{
griview.data=GridData;// this is sample only
localStorage.set("GridData",GridData)
}