Hello, im looking for a way to reset a grid settings to its initial state, after being grouped and sorted. I tried to delete the settings item from the page local storage and reloading the page but it is not working. This is my code
findingsGrid.enablePersistence = false;
if (window.localStorage.getItem("gridFindingsGrid"))
window.localStorage.removeItem("gridFindingsGrid");
document.location.reload();
Basically i want to remove all sorting and grouping from the columns.