Hi, I have this situation with sfTab component in Blazor 18.4.0.43
In one blazor page I have sfTab with 3 tab Items
In TabItem No. 3
I am creating components
Like this
<TabItem>
<ChildContent>
<TabHeader Text="Comentarios" IconCss="e-twitter"></TabHeader>
</ChildContent>
<ContentTemplate>
<ComponentData/>
</ContentTemplate>
</TabItem>
The problem that I have is when I call save button on Tabitem1,
this button call every component and send data to api database.
If I not make click in tabitem3, I get null reference error because sftab content on tab3 not exists.
Only works when after I made clic in tab3 with mouse.
Is there any way to instantiate content inside one tabitem without touch event?
Thanks in advance!