Friday, April 4, 2014

Scroll bar fro gridview

 <div style="width: 294px; height: 122px; overflow: scroll">
                        <asp:GridView ID="dgvExpertise" AllowSorting="true" AllowPaging="true" PageSize="10"
                            AutoGenerateColumns="false" class="table table-bordered coursesTable" Style="border-collapse: initial;"
                            runat="server" PagerSettings-Mode="Numeric" PagerSettings-PageButtonCount="10"
                            OnPageIndexChanging="dgvExpertise_PageIndexChanging">
                            <RowStyle />
                            <AlternatingRowStyle BackColor="#f9f9f9" />
                            <PagerStyle HorizontalAlign="Left" CssClass="pager" />
                            <HeaderStyle BackColor="#D6D5D6" />
                            <EmptyDataTemplate>
                                No Record Found
                            </EmptyDataTemplate>
                            <Columns>
                                <asp:BoundField DataField="LeadId" HeaderText="LeadId" HeaderStyle-ForeColor="Black" />
                                <asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
                                <asp:BoundField DataField="Phone" HeaderText="Phone" HeaderStyle-ForeColor="Black" />
                                <asp:BoundField DataField="LeadCategoryName" HeaderText="Status" HeaderStyle-ForeColor="Black"
                                    SortExpression="LeadCategoryName" />
                                <asp:BoundField DataField="ReferredBy" HeaderText="ReferredBy" HeaderStyle-ForeColor="Black"
                                    SortExpression="ReferredBy" />
                            </Columns>
                        </asp:GridView>
                    </div>

No comments:

Post a Comment