JQuery slide effect in ASP.NET grid

My question is if there is a way to create a resettable effect using JQuery show (), hide (), slide (). Functions and has anyone found examples for this?

+2


source to share


1 answer


Since the gridview is just displayed as a table in html, you should be able to use jquery effects on that table.

if your gridview had ID="GridView1"

then the selector would be:

$('#<%= GridView1.ClientID %>')

      



then you could have in javascript things like:

$('#<%= GridView1.ClientID %>').slideUp();
$('#<%= GridView1.ClientID %>').slideDown();
$('#<%= GridView1.ClientID %>').show();
$('#<%= GridView1.ClientID %>').hide();

      

+2


source







All Articles