Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a button on my home page .. OnClick I'm getting data from the database and biding it to my GridView, I want to "SlideDown" the GridView on ButtonClick.. this is my code

$(document).ready(function() {
        $("#ShowAllRecordsBtn").click(function() {
            $("#GridView1").slideDown(100);
        });

    });

And I have my GridView

<asp:GridView ID="GridView1" runat="server" CellPadding="4" GridLines="None" Style="z-index: 1;
        left: 65px; top: 93px; position: absolute; height: 180px; width: 304px" AutoGenerateEditButton="false"
        AutoGenerateColumns="False" AutoGenerateDeleteButton="True" DataKeyNames="EmpId"
        OnRowDeleting="GridView1_RowDeleting1" OnRowCommand="GridView1_RowCommand" ForeColor="#333333">
        <RowStyle BackColor="#EFF3FB" />
        <FooterStyle BackColor="#507CD1" ForeColor="White" Font-Bold="True" />
        <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
        <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
        <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
        <EditRowStyle BackColor="#2461BF" />
        <AlternatingRowStyle BackColor="White" />
        <Columns>
            <asp:TemplateField>
                <HeaderTemplate>
                    <asp:Label runat="server" Text="ID"></asp:Label>
                </HeaderTemplate>
                <EditItemTemplate>
                    <asp:TextBox ID="txtEmpId" runat="server" ReadOnly="true" Text='<%#Eval("EmpId") %>'></asp:TextBox>
                </EditItemTemplate>
                <ItemTemplate>
                    <asp:Label ID="txtEmpId" runat="server" Text='<%#Eval("EmpId") %>'></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:TemplateField>
                <HeaderTemplate>
                    <asp:Label ID="Label2" runat="server" Text="Name"></asp:Label>
                </HeaderTemplate>
                <EditItemTemplate>
                    <asp:TextBox ID="txtEmpName" runat="server" Text='<%#Eval("EmpName") %>'></asp:TextBox>
                </EditItemTemplate>
                <ItemTemplate>
                    <asp:Label ID="txtEmpName" runat="server" Text='<%#Eval("EmpName")%>'></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:TemplateField>
                <HeaderTemplate>
                    <asp:Label ID="Label3" runat="server" Text="Address"></asp:Label>
                </HeaderTemplate>
                <EditItemTemplate>
                    <asp:TextBox ID="txtEmpAdd" runat="server" Text='<%#Eval("EmpAdd") %>'></asp:TextBox>
                </EditItemTemplate>
                <ItemTemplate>
                    <asp:Label ID="txtEmpAdd" runat="server" Text='<%#Eval("EmpAdd")%>'></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:TemplateField>
                <HeaderTemplate>
                    <asp:Label ID="Label4" runat="server" Text="Age"></asp:Label>
                </HeaderTemplate>
                <EditItemTemplate>
                    <asp:TextBox ID="txtEmpAge" runat="server" Text='<%#Eval("EmpAge") %>'></asp:TextBox>
                </EditItemTemplate>
                <ItemTemplate>
                    <asp:Label ID="txtEmpAge" runat="server" Text='<%#Eval("EmpAge")%>'></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:Button ID="btnSelect" runat="server" Text="Select" CommandName="Select" CommandArgument='<%#Eval("EmpId") %>' />
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>

The "SlideDown" doesn't take effect ! Pls Help

Thanks in Advance

share|improve this question
You want to bind and animate the grid view on the button click. – geek Feb 24 '11 at 6:50

2 Answers

up vote 0 down vote accepted

Keep the GridView inside a DIV tag and try to animate. Because the Id of the ServerSideControl in your case <asp:GridView> will be changed when the page is rendered.

<div id="divGrid">
  <asp:GridView>
  </asp:GridView>
</div>

 $("#ShowAllRecordsBtn").click(function() {
        $("#divGrid").slideDown(100);
    });
share|improve this answer
I think you can specify the ID in .NET 4.0 so you can have better control over your ... controls:) – Radu Caprescu Feb 24 '11 at 6:40
@Verrigo:Yes in .net 4.0 you can specify using ClientIdMode property. – Danny Feb 24 '11 at 6:41
Thanks ! new to jQuery so a little confused with how it works. Thanks a ton – badZoke Feb 24 '11 at 7:05

you could put it

$($get('<%= GridView1.ClientID.toString() %>')).slideDown(100);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.