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
If you want a tooltip for the specific cells there is a Title property off of each cell and a TitleMode property as well. Typically, you would set the tooltip in the InitializeRow event
Title Property:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Infragistics2.WebUI.UltraWebGrid.v8.2~Infragistics.WebUI.UltraWebGrid.UltraGridCell~Title.html
TitleMode Property:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Infragistics2.WebUI.UltraWebGrid.v8.2~Infragistics.WebUI.UltraWebGrid.UltraGridCell~TitleMode.html
Both properties are documented well with code details in the links above.