Maybe i don't understand the concept entirely but I hope someone can help me.
On my route "/organization" I have a RadzenGrid wit a LoadData event which fetches the rows. (I have a call to this method in the Task OnInitializedAsync() method otherwise the grid won't get populated as i visit the page.)
If i now edit a row by going to the route /organization/edit/mycompany and then go back by navigating back to /organization the Loaddata gets triggered but the filtering / sorting / pagenumber is reset (the grid is reloaded) this is not what i want. Te filtering / sorting / pagenumber should stay the same.
It both happens if i :
- create a seperate edit page and navigate back
- use one page with double route one for overview one for edit.
Am i doing something stupid ?