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
375
How to place tooltip on a cell
posted

hi,

I'm using v10.3, is that any function on showing a tooltip on a cell when mouse over?

Thanks in advance

Parents
  • 6748
    Suggested Answer
    posted

    Hello,

     

    Yes, the tooltips are available in 10.3. You can set a tooltip of a particular cell, for example, in InitializeRow event:

    protected void WebDataGrid1_InitializeRow(object sender, RowEventArgs e)

        {

            e.Row.Items[0].Tooltip = "some tooltip";

           

        }

    Hope this helps.

     

    Regards,

    Lyuba

    Developer Support Engineer

    Infragistics

    www.infragistics.com/support

     

     

Reply Children