This is a migrated thread and some comments may be shown as answers.

Grid Mouseover popup...

3 Answers 271 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Vikas
Top achievements
Rank 1
Vikas asked on 09 Jan 2012, 06:04 AM
Hi

I've created a Row mouseover popup with jquery here :- http://trijewels.com/LooseDiamonds.aspx
I want to do the same thing using Telerik controls.
I am new to telerik and need help.

Thanks
Vikas Rana

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 09 Jan 2012, 06:18 AM
Hello Vikas,

Take a look at the following demo.
ToolTip / Tooltipified RadGrid

-Shinu.
0
Vikas
Top achievements
Rank 1
answered on 09 Jan 2012, 07:17 AM
I've already seen this but that is only for single cell not for complete row...
0
Shinu
Top achievements
Rank 2
answered on 09 Jan 2012, 08:02 AM
Hello Vikas,

Try the following code.
C#:
protected void grid_ItemDataBound(object sender, GridItemEventArgs e)
{
   if (e.Item is GridDataItem)
  {
     GridDataItem item = (GridDataItem)e.Item;
    item.ToolTip = item["UniqueName"].Text;
  }
}

-Shinu.
Tags
Grid
Asked by
Vikas
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Vikas
Top achievements
Rank 1
Share this question
or