Reputation: 12843
in my Project there is Asp.net GridView ( that putted into a update panel). i did open Gridview In Jquery Ui Dialog. Is there any way exist to edit a specific column grid View cells in microwave on mouse over on that cell? for example displaying a div on that position and doing an action. please give me help. thanks
Upvotes: 1
Views: 1290
Reputation: 2708
You could use hover jQuery function:
$(selector).hover( handlerIn(eventObject), handlerOut(eventObject) )
it takes 2 parameters: 1). Function which called on mouse goes in element 2). Function which called on mouse goes out element
In the first parameter you could show div, and hide it in the second one.
Upvotes: 1