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
30
Column Header Tooltips
posted

I need to use custom tooltips for my column headers, and the two methods I have tried, neither has worked.

 

Method 1:

void mGrid_InitializeRow(object sender, RowEventArgs e){       foreach (UltraGridColumn col in mGrid.Columns)       {              col.Header.Title = "New Tooltop Value: " + col.Caption;       }

}

 

However, the tooltip still just shows the column caption, without the added text.

 

Method 2 was a client side attempt:

igtbl_getElementById(grid.Bands[0].Columns[iCol].Id).title = sTooltip;

 

Again, all that shows up is the original column caption. What am I missing? Thanks for the help.