Hello
I need to insert a tooltip in a ultragridcolumn containing a cell of type button but I the ultragridcolumn doesn't have such attribute
Can you help me?
Thanks
Hello,
There is a "Title" property in each colunm definition (in Header) -- this is actually the tooltip that is displayed for the header on mouseover.
<igtbl:UltraGridColumn BaseColumnName="FirstName" IsBound="True" Key="FirstName"> <Header Caption="FirstName" Title="ToolTip"> <RowLayoutColumnInfo OriginX="2" /> </Header> <Footer> <RowLayoutColumnInfo OriginX="2" /> </Footer> </igtbl:UltraGridColumn>
HTH,
this method is ok but I need to add tooltip to each cell containing buttons not in the header