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
1205
Disabling UltraGridCell ToolTips
posted

Hi,

I want to disable the default tooltips for some cells in a grid, I know this can be done at the grid level however I want to keep the tool tips as they are for the grid and just disable them for a particular column.  Is this possible??

Thanks,

Denis

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    Hi Denis,

    I don't see any property to turn off tooltips for a single column. But try this and see if it works:


            private void ultraGrid1_InitializeRow(object sender, InitializeRowEventArgs e)
            {
                e.Row.Cells["Column that I don't want tooltips on"].ToolTipText = null;
            }

Children
No Data