Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2430
How do you set the Scroll Row Tooltip?
posted

 

From the sample (but not just the sample => I want to customize the scroll text => as you can see when you scroll in the sample, it just displays the first non null item from the screen as you scroll.  I don't want the FirstName: for instance but say the last name or some combination.

How do I configure this???

if it is cutoff, then use the following link...

http://steppic.com/show/8573a8f7364126051fee54e8549377d9.html

Parents
No Data
Reply
  • 28925
    Verified Answer
    Offline posted

    Hello,

    You can use the ScrollTipField property off of the band to override the tooltip displayed by setting it equal to the column's key.

    this.ultraGrid1.DisplayLayout.Bands[0].ScrollTipField = "LastName";
     

    Combining more than one key is considered a feature request. You can submit one here on our ideas website.

     
Children