Hi,
During grid initialization I have duplicate OnReadMethod call. I dynmaically set LoadGroupsOnDemand parameter. When LoadGroupsOnDemand is false and when I skip the second call (I shouldn't do any extra logic to calculate the call number anyway) it works fine. If LoadGroupsOnDemand is true I have to call it twice. With early ending of first call, second OnRender call won't be done. If I do "return" at the begining of second call it returns me an empty grid.
Similar issue to this one: https://feedback.telerik.com/blazor/1442276-onread-called-twice-on-initialization
Hello Kacper,
Can you send a REPL example (similar to mine), which reproduces the unexpected behavior?
Regards,
Dimo
Progress Telerik
Hi Dimo,
In the case that I described, the problem is not in switching LoadGroupsOnDemand attribute, but double call of the OnRead method. Even when I have a constant LoadGroupsOnDemand value set to true, there is still double call to the OnRead method. Skipping first call doesn't help - the next call then doesn't occur.
Hi Kacper,
Here is how to Grid works:
Here is a REPL test page, which demonstrates the above.
If you are setting LoadGroupsOnDemand on initial load, then it is possible to avoid the two data requests if you:
In conclusion, the discussed Grid behavior is expected and I don't see a bug here. Still, let me know if I am missing something.
Regards,
Dimo
Progress Telerik