Hi,
I am trying to the SfTab control with the bootstrap5-dark theme. Using the code below in Index.razor, as shown in the attached image, the Tabs do not display correctly. Note that if I put the same code inside a dialog it displays fine.
Please advise, thanks.
<SfTab>
<TabItems>
<TabItem>
<ChildContent>
<TabHeader Text="FIRST"></TabHeader>
</ChildContent>
<ContentTemplate>
<SfGrid TValue="string" />
</ContentTemplate>
</TabItem>
<TabItem>
<ChildContent>
<TabHeader Text="SECOND"></TabHeader>
</ChildContent>
<ContentTemplate>
</ContentTemplate>
</TabItem>
</TabItems>
</SfTab>
Yes, it works now. Thank you :)