Vertical scrolltips are chopped off if grid has large number of rows

Hi, In my databound grid(1.6.1.5/vs.net 2003), I have around 3,000 rows. I have enabled VerticalScrollTip. The scrollTipFormat is "Position {0}". When I scroll, it is showing tips properly upto "Position 999", then it turns to "Position 100". It is not showing "Position 1000", 1001 .. so on. I think the scrolltip needs to be resized based on the text length. thanks, - Reddy

1 Reply

AD Administrator Syncfusion Team September 12, 2003 01:08 PM UTC

You can use the ScrollTipFeelbackEvent to dynamically size the Tip Window.
private void gridControl1_ScrollTipFeedback(object sender, Syncfusion.Windows.Forms.ScrollTipFeedbackEventArgs e)
{
	e.Size = this.gridControl1.ScrollTip.GetPreferredSize(e.Text);
}

Loader.
Up arrow icon