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
215
Tooltip in ultragridcolumn
posted

 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

Parents
  • 28464
    posted

    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,

Reply Children