Hi,
I'm currently experiencing an issue with SfTooltips on Sfgrid, page two and beyong.
On page 1 of the paging, or on page load, the Tooltips works fine, but after clicking on the paging to page two, the SfTooltips stops working.
Has anybody else encountered this issue when using SfTooltip on SfGrid?
Please see example of code below.
Many thanks in advance.
<SfGrid @ref="DefaultGrid" DataSource="@GridData" AllowSorting="true" AllowPaging="true" AllowFiltering="true" AllowTextWrap="true"
AllowReordering="true" AllowExcelExport="true" AllowPdfExport="true" GridLines="Syncfusion.Blazor.Grids.GridLine.Vertical" RowHeight="70" Toolbar="Toolbaritems">
<GridEvents OnToolbarClick="ToolbarClickHandler" TValue="CsatSurveyModel" />
<GridFilterSettings Mode="FilterBarMode.Immediate" />
<GridPageSettings PageSize="10" />
<GridColumns>
<GridColumn >
<Template>
@{
var data = (context as SurveyModel);
<SfTooltip Target="@("#img" + data.SurveyID)">
<TooltipTemplates>
<Content>
image not working
</Content>
</TooltipTemplates>
</SfTooltip>
<img src="www.exapple.com" id="@("img" + data.SurveyID)" />
}
</Template>
</GridColumn>
</GridColumns>
</SfGrid>