Hi all,
I'm using Asp.net ajax radgrid. Does it provide any mouseover event?? if Yes please give me some examples.
I want to display tooltip on mouseover for each cell for which i have to fetch records from database server. After successful execution of query result will display as tooltip for particular cell.
Any suggestions .. please let me know..
Thanks in advance!!!
I'm using Asp.net ajax radgrid. Does it provide any mouseover event?? if Yes please give me some examples.
I want to display tooltip on mouseover for each cell for which i have to fetch records from database server. After successful execution of query result will display as tooltip for particular cell.
Any suggestions .. please let me know..
Thanks in advance!!!
6 Answers, 1 is accepted
0

Princy
Top achievements
Rank 2
answered on 15 Dec 2008, 09:34 AM
Hello Sandeep,
You can try out the following code to dispaly a ToolTip for various cells on mouseover, in the grid.
cs:
You can also refer to this link which demonstrates on using ToolTip/ToolTip Manager.
Thanks
Princy.
You can try out the following code to dispaly a ToolTip for various cells on mouseover, in the grid.
cs:
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e) |
{ |
if (e.Item is GridDataItem) |
{ |
// store the query result to a string variable, strtxt |
GridDataItem dataItem = (GridDataItem)e.Item; |
dataItem.ToolTip = strtxt;// to display tooltip for every cell |
dataItem["columnUniqueName"].ToolTip = strtxt;//for a particular cell |
} |
} |
You can also refer to this link which demonstrates on using ToolTip/ToolTip Manager.
Thanks
Princy.
0

Sandeep
Top achievements
Rank 1
answered on 30 Dec 2008, 01:10 PM
Thank you!!!
0

Talha
Top achievements
Rank 1
answered on 07 Feb 2013, 11:46 AM
Hello,
I have used telerik controls to hover the picture of the client when the cursor is kept on his name .. but i m unable to hover out when the cursor is moved.
Even after moving the cursor the picture remains opened. Please help me to deal with this issue as soon as possible.
I have used telerik controls to hover the picture of the client when the cursor is kept on his name .. but i m unable to hover out when the cursor is moved.
Even after moving the cursor the picture remains opened. Please help me to deal with this issue as soon as possible.
0
Hi Talha,
I am afraid it is difficult to figure out your exact requirement. Please provide us the exact steps to reproduce the issue or open a support ticket to send us a sample runnable application demonstrating your specific scenario. Thus, we will be able to further analyze the problem and provide a proper solution.
Greetings,
Eyup
the Telerik team
I am afraid it is difficult to figure out your exact requirement. Please provide us the exact steps to reproduce the issue or open a support ticket to send us a sample runnable application demonstrating your specific scenario. Thus, we will be able to further analyze the problem and provide a proper solution.
Greetings,
Eyup
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Talha
Top achievements
Rank 1
answered on 12 Feb 2013, 08:59 AM
Hi!
thanks for your quick response but i have already solved the problem :). but there is another problem which i want you to help with.
I have a radgrid in my page. a grid within a grid actually. all i need is to handle all the horizontal scroll bars with the master scroll. I hope you understand the problem. Waiting for your quick response. \
Thanks
Talha Zafar
thanks for your quick response but i have already solved the problem :). but there is another problem which i want you to help with.
I have a radgrid in my page. a grid within a grid actually. all i need is to handle all the horizontal scroll bars with the master scroll. I hope you understand the problem. Waiting for your quick response. \
Thanks
Talha Zafar
0
Hi Talha,
Unfortunately, the provided information is not sufficient to figure out your specific scenario.
Please note that scrolling is not enabled for the detail tables. For practical implementation of grid hierarchy, you can check out the following examples:
- Standard Hierarchy
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/declarativerelations/defaultcs.aspx
- Programmatic Hierarchy
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/autogeneratedhierarchy/defaultcs.aspx
- Hierarchy with Templates
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/nestedviewtemplate/defaultcs.aspx
- Template relations
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/nestedviewtemplatedeclarativerelations/defaultcs.aspx
- Master / Detail grids
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/selectedvalue/defaultcs.aspx
Please choose the approach most suitable to your specific requirements and if the issue still remains, open a support ticket to send us a very basic sample web site demonstrating the problematic behavior.
Greetings,
Eyup
the Telerik team
Unfortunately, the provided information is not sufficient to figure out your specific scenario.
Please note that scrolling is not enabled for the detail tables. For practical implementation of grid hierarchy, you can check out the following examples:
- Standard Hierarchy
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/declarativerelations/defaultcs.aspx
- Programmatic Hierarchy
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/autogeneratedhierarchy/defaultcs.aspx
- Hierarchy with Templates
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/nestedviewtemplate/defaultcs.aspx
- Template relations
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/nestedviewtemplatedeclarativerelations/defaultcs.aspx
- Master / Detail grids
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/selectedvalue/defaultcs.aspx
Please choose the approach most suitable to your specific requirements and if the issue still remains, open a support ticket to send us a very basic sample web site demonstrating the problematic behavior.
Greetings,
Eyup
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.