Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Is there a way to update a grid value(s) without refreshing the grid and loosing your viewing spot?
I currently just have an auto refresh widget that refreshes the data in my grid. However, this redraws the entire grid and you loose your spot if you scroll to the bottom of the grid.
Solved! Go to Solution.
If you have a selected row it must focus the selected row on reload, if you don't have any selected row it will go to the beginning.
There's a CurrentScrollTop and a ScrollTop bindable property on Grid widget I never used it, but I've done a fast mockup and it works :
If you have a selected row it must focus the selected row on reload, if you don't have any selected row it will go to the beginning.
There's a CurrentScrollTop and a ScrollTop bindable property on Grid widget I never used it, but I've done a fast mockup and it works :
Thanks Carles your suggestion worked great!