Hi,
I have a very complex layout with dozens of labels, fields and datagrids on the page at the same time, most of the form is subject to validation, but I believe that Datagrids validate their cells internally, so technically these don't need to be in the page until they are visible.
I thought that it would be great to use a rectangular Skeleton with an indicative size as a light-weight placeholder instead of rendering teh data grid, the flow would be to start lazy loading the data as soon as the skeleton becomes visible and upon completing the data load, the Skeleton would swap for the datagrid.
My question is, how can I detect when the Skeleton becomes visible? I've been reading about something called the "Intersect Observer API", but is thre a better way in Syncfusion/Blazor that I am unaware of?
Thanks