Hello,
I am trying to add a click event at the tab header
I saw this example you posted but it does not work for me.
https://www.syncfusion.com/forums/148800/how-to-capture-tab-click-event
The component that I am using is SfTab like in this example:
<SfTab>
<TabItems>
<TabItem Content="">
<ChildContent>
<TabHeader Text="..."></TabHeader>
</ChildContent>
</TabItem>
<TabItem Content="">
<ChildContent>
<TabHeader Text="..."></TabHeader>
</ChildContent>
</TabItem>
<TabItem Content="">
<ChildContent>
<TabHeader Text="..."></TabHeader>
</ChildContent>
</TabItem>
</TabItems>
</SfTab>
Any advice on how to solve it?