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
210
UltraGrid Cell Button Tooltip
posted

Hi,

By default, the ultragrid button cells have a tooltip that appears when the user hovers over it.

How can I remove it? I don't seem to find the property to disable it.

  • 9298
    Verified Answer
    posted

    I assume you are talking about when the text in the cell is too long to be accomodated by the area of the button and so when you hover over the button a balloon comes up that shows the entire text in the cell.  You can turn off that balloon by setting the TipStyleCell property of the grid to "Hide".  You could do this in the InitializeLayout event handler like so: 

    e.Layout.Override.TipStyleCell =

    TipStyle.Hide;

    I hope this helps.

    Michael S.