Closed larshg closed 4 years ago
Hello @larshg
currently you cannot force reload FlexGrid due to functionallity in OnParameterAsync. I will think about it and how to solve this kind of problem with refreshind FlexGrid data.
@Mewriick Thanks
I tried to search through the source to figure out how the "next page" etc is made - wouldn't be possible to make a "navigate to current page / refresh" - or is it due to some variables update, which triggers the refresh? ie. setting the "CurrentPage" to 1 when it is already 1 doesn't trigger it?
@larshg
The problem now is that you must call some method on object LazyTableDataSet<TItem>
which is not provided to the outside world. You only have table data adapter which internally create this data set object. I have to provide some public API for force refresh.
Hi @Mewriick
I'm currently trying to implement the use of your quite nice flexgrid - serverside blazor.
However, I have another process which occasionally adds new entries to the DB and I would like to update the view using a timer, but I can't find a way to force the reload.
Also, I tried using the AllowCreateItem, but it makes exceptions as soon as I add the line:
In both cases I would like a function to refresh "current page" - often the latest entries added.