如何防止滚动条在网格视图的选定索引更改时重置
本文关键字:索引 滚动条 何防止 网格 视图 | 更新日期: 2023-09-27 18:21:51
我的页面上有一个网格视图,显示在下面
<div style="overflow-x:scroll; width:100%; height:255px">
<asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333" GridLines="Horizontal"
BorderStyle="Solid" BorderColor="Black" AllowPaging="false" PageSize="4" OnPageIndexChanging="GridView1_PageIndexChanging" Height="235px"
width="90%" OnRowDataBound="GridView1_RowDataBound" OnSelectedIndexChanged="GridView1_SelectedIndexChanged" AutoGenerateColumns="false"
RowStyle-Height="37px" HeaderStyle-Height="40px" FooterStyle-Height="40px">
<Columns>
<asp:BoundField HeaderText="ID" DataField="UserID" />
<asp:BoundField HeaderText="User Name" DataField="UserName" HeaderStyle-HorizontalAlign="Center"/>
<asp:BoundField HeaderText="User Role" DataField="UserRoleName"/>
</Columns>
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
<EditRowStyle BackColor="#999999" />
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#2e85c2" Font-Bold="True" ForeColor="White" HorizontalAlign="Center" VerticalAlign="Middle" />
<PagerStyle BackColor="#2e85c2" ForeColor="White" HorizontalAlign="Center" VerticalAlign="Bottom" />
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#E9E7E2" />
<SortedAscendingHeaderStyle BackColor="#506C8C" />
<SortedDescendingCellStyle BackColor="#FFFDF8" />
<SortedDescendingHeaderStyle BackColor="#6F8DAE" />
</asp:GridView>
</div>
这很好用,下面所选的改变了索引的方法也很好用
protected void GridView1_SelectedIndexChanged(Object sender, EventArgs e)
{
GridViewRow row = GridView1.SelectedRow;
int sd = int.Parse(row.Cells[0].Text);
removeUserButton.Enabled = true;
GridView1.Focus();
}
但当我从网格视图的底部选择一个项目时,它会重置滚动条,如果不向下滚动,你就无法看到所选内容。有没有办法防止页面上的额外滚动?
max-height:255px
<div style="overflow-x:scroll; width:100%; max-height:255px;">
尝试在GridView1_SelectedIndexChanged事件上设置GridView的以下属性。
dataGridViews1.ScrollBars = ScrollBars.None;
为了防止以后有人看到这个问题,我从未设法解决这个问题,但发现Telerik有我公司使用的radgrid,所以我只是使用了它,它解决了这个问题。不是理想的解决方案,但它确实起到了作用。
我也要处理这个问题。我看到的解决方案是设置网格视图的分页。这样,您将在每页显示一组行数,以防止使用滚动条。希望这能给你一个想法
谢谢。