This is a migrated thread and some comments may be shown as answers.

RadToolTipManager not working on RadGrid

1 Answer 87 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Srimanta
Top achievements
Rank 1
Srimanta asked on 10 Jun 2013, 01:53 PM
Hi ,

Thanks in Advance for any Suggestion.

In my code I am Using RadToolTipManager to display tooltip on grid. I am having a column which will show tooltip. On Initial Page load I am getting the tooltip correctly for the respective rows. but after applying filter on that particular column, the tool tip is getting the same reference as on page load and showing the tooltip that I have able to see on page load. In OnItemdatabound I am adding the tooltipManager to the filtered row , still its taking the reference of Initial page load.


Please suggest ......

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 11 Jun 2013, 05:56 AM
Hi,

Please try setting the below code in PageIndexChanged event.

C#:
protected void RadGrid1_PageIndexChanged(object source, GridPageChangedEventArgs e) 
   
       RadToolTipManager1.TargetControls.Clear(); 
   }

Thanks,
Princy
Tags
Grid
Asked by
Srimanta
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or