Click to See Complete Forum and Search --> : onmouseover for linkbutton


dhakshan
05-09-2011, 08:13 AM
Hi Friends,

I have an gridview in that i have an dropdownlist and linkbutton. Corresponding to the selection in dropdownlist the linkbutton needs to show the corresponding list of details on mouseover.

Will anyone help on this.

Ribeyed
05-12-2011, 07:20 AM
Hi the question is rather vague, no example of where you are stuck, no metion of any research, you didn't say if you want VB or C#, however sounds like its just a nested gridview that you want.

Here is an example of creating a nested Griview with a simple Dropdown effect.

http://forums.asp.net/t/1071521.aspx/1?Nested+GridView+with+simple+Dropdown+effect

regards

Ribs

hltsofting
06-03-2011, 01:05 PM
JQuery is very good :)

$(document).ready(function () {
$("#LinkbuttonClientID").mouseover(function(){

});
});

sead12
06-23-2011, 08:56 AM
Yes I agree with hltsofting about jQuery.
It is the best way to do it, but you can use javascript but it would be more complicated. But jQuery is so simple to use that it
can be implemented right away.