使网格视图自动滚动

发布于 2024-11-18 16:11:31 字数 2279 浏览 2 评论 0原文

我有一个网格。我有一个按钮,如果我单击该按钮,它将向该网格添加一个空行,我将在其中编辑和保存。我需要显示一个滚动条,以便当我单击该按钮时,它将在网格末尾添加空行,并在末尾添加滚动条

<div id="Div" runat="server" class="divFieldRow">           
         <div>
         <center>  
         <div  style="overflow: auto; height: 150px">
                 <asp:GridView ID="gvEventMechanic" runat="server" AutoGenerateColumns="False" PageSize="5"
                            GridLines="None" AllowSorting="true" BorderWidth="1"
                            BorderColor="Brown" AlternatingRowStyle-BackColor="Cyan" HeaderStyle-BackColor="ActiveCaption"
                            FooterStyle-BackColor="DimGray" EnableViewState="true" >                         
                <Columns>
                    <asp:TemplateField>                    
                        <HeaderTemplate>
                            Disable
                            </HeaderTemplate>
                        <ItemStyle HorizontalAlign="Center" />
                        <ItemTemplate>                           
                            <asp:CheckBox ID="chkDelete" runat="server" AutoPostBack="true" OnCheckedChanged="cbDelete_OnCheckedChanged"></asp:CheckBox>
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:TemplateField >                     
                       <HeaderTemplate>Event</HeaderTemplate>
                        <ItemStyle HorizontalAlign="Center" />
                        <ItemTemplate>
                            <asp:Label ID="lblDesc" Visible='<%# ! IsInEditMode %>' runat="server" Text='<%# Eval("Description") %>' />
                            <asp:TextBox ID="txtDesc" Visible='<%# IsInEditMode %>' runat="server" Text='<%#Eval("Description")%>' MaxLength="255">
                            </asp:TextBox>                                                        
                        </ItemTemplate>
                    </asp:TemplateField>
                 </Columns>                
            </asp:GridView>     
        </div> 
     </center>
  </div> 

I have a grid. I have a button down that if i click on that button it will add an empty row to that grid in which i will edit and save. I need to display a scroll bar so that when i click on that button it will add empty row in the end of grid with scroll bar at the end

<div id="Div" runat="server" class="divFieldRow">           
         <div>
         <center>  
         <div  style="overflow: auto; height: 150px">
                 <asp:GridView ID="gvEventMechanic" runat="server" AutoGenerateColumns="False" PageSize="5"
                            GridLines="None" AllowSorting="true" BorderWidth="1"
                            BorderColor="Brown" AlternatingRowStyle-BackColor="Cyan" HeaderStyle-BackColor="ActiveCaption"
                            FooterStyle-BackColor="DimGray" EnableViewState="true" >                         
                <Columns>
                    <asp:TemplateField>                    
                        <HeaderTemplate>
                            Disable
                            </HeaderTemplate>
                        <ItemStyle HorizontalAlign="Center" />
                        <ItemTemplate>                           
                            <asp:CheckBox ID="chkDelete" runat="server" AutoPostBack="true" OnCheckedChanged="cbDelete_OnCheckedChanged"></asp:CheckBox>
                        </ItemTemplate>
                    </asp:TemplateField>
                    <asp:TemplateField >                     
                       <HeaderTemplate>Event</HeaderTemplate>
                        <ItemStyle HorizontalAlign="Center" />
                        <ItemTemplate>
                            <asp:Label ID="lblDesc" Visible='<%# ! IsInEditMode %>' runat="server" Text='<%# Eval("Description") %>' />
                            <asp:TextBox ID="txtDesc" Visible='<%# IsInEditMode %>' runat="server" Text='<%#Eval("Description")%>' MaxLength="255">
                            </asp:TextBox>                                                        
                        </ItemTemplate>
                    </asp:TemplateField>
                 </Columns>                
            </asp:GridView>     
        </div> 
     </center>
  </div> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初雪 2024-11-25 16:11:31

使用一个以固定高度和溢出来包裹网格的 div 应该可以解决表格超出固定高度的情况。涉及分页时,您可以切换到网格中最后一个可用页面并重新绑定它,如果这是您想要实现的目标。

Using a div that wraps the grid with fixed height and overflow should do the trick in case the table exceeds the fixed height. With paging involved you may switch to the last available page in the grid and rebind it, if that is what you want to achieve.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文