Tooltip not working on SfGrid Pagination page two

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>



3 Replies 1 reply marked as answer

RN Rahul Narayanasamy Syncfusion Team December 2, 2021 03:52 AM UTC

Hi Andrew, 

Greetings from Syncfusion. 

Query: Tooltip not working on SfGrid Pagination page two 

We have validated your query and we suspect that you are facing difficulties with showing SfTooltip in GridColumn while paging. We have already documented this topic. Find the below documentation for your reference. 

Reference:  

Please let us know if you have any concerns. 

Regards, 
Rahul 


Marked as answer

AO Andrew Olowookere December 2, 2021 12:38 PM UTC

Hi Rahul,


Thank you for your response, your answer fixed the issue.


Best

Andrew




RN Rahul Narayanasamy Syncfusion Team December 3, 2021 03:53 AM UTC

Hi Andrew, 

Thanks for the update. 

We are glad to hear that the provided solution was helpful to achieve your requirement. Please get back to us if you need further assistance. 

Regards, 
Rahul 


Loader.
Up arrow icon