简体   繁体   English

在回发时丢失动态数据绑定

[英]Lose dynamic data binding on postback

I have a webdata grid that is being populated during runtime (each time a user clicks on a different button, it loads different information)我有一个在运行时填充的网络数据网格(每次用户单击不同的按钮时,它都会加载不同的信息)

The problem is that on selected row change the grid is not getting the right row because it does a post back, and gets rid of the data in the grid问题是在selected row change网格没有得到正确的行,因为它回发,并摆脱了网格中的数据

Protected Sub grid_load(ByVal sender As Object, ByVal e As System.EventArgs) Handles WebDataGrid1.Load
    If Not IsPostBack Then
        Me.WebDataGrid1.DataSource = Membership.FindUsersByName("A%")
        Me.WebDataGrid1.DataBind()
    End If
End Sub

Protected Sub WebDataGrid1_Selection_RowSelectionChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles WebDataGrid1.RowSelectionChanged
     Dim thisrow = e.CurrentSelectedRows

End sub

thisrow always equals Nothing thisrow总是等于Nothing

How can I get the databind() to persist over postback so that I can access the information in the selected row?我怎样才能让 databind() 在回发时持久化,以便我可以访问所选行中的信息?

<ig:WebDataGrid ID="WebDataGrid1" runat="server" AutoGenerateColumns="False" Width="750px" AltItemCssClass="AltRows" >
                    <Columns>
                        <ig:BoundDataField DataFieldName="UserName" DataType="System.String" Key="UserName">
                            <Header Text="User Name">
                            </Header>
                        </ig:BoundDataField>
                        <ig:BoundDataField DataFieldName="Email" Key="Email">
                            <Header Text="Email">
                            </Header>
                        </ig:BoundDataField>
                        <ig:BoundCheckBoxField DataFieldName="IsApproved" Key="IsApproved" Width="75px">
                            <Header Text="Approved">
                            </Header>
                        </ig:BoundCheckBoxField>
                        <ig:BoundCheckBoxField DataFieldName="IsLockedOut" Key="IsLockedOut" Width="100px">
                            <Header Text="Locked Out">
                            </Header>
                        </ig:BoundCheckBoxField>
                        <ig:BoundDataField DataFieldName="LastLoginDate" Key="LastLoginDate">
                            <Header Text="LastLoginDate">
                            </Header>
                        </ig:BoundDataField>
                    </Columns>
                    <Behaviors>
                        <ig:Selection CellClickAction="Row" CellSelectType="None" RowSelectType="Single">
                            <SelectionClientEvents RowSelectionChanged="WebDataGrid1_Selection_RowSelectionChanged" />
                            <AutoPostBackFlags RowSelectionChanged="True" />
                        </ig:Selection>
                    </Behaviors>
                </ig:WebDataGrid>

Set EnableDataViewState to true and then the WebDataGrid data will be serialized to ViewState and will persist through PostBack without rebinding the grid.EnableDataViewState设置为 true,然后WebDataGrid数据将被序列化为ViewState并将通过PostBack持久化,而无需重新绑定网格。

<ig:WebDataGrid ID="WebDataGrid1" 
                runat="server" 
                AutoGenerateColumns="False" 
                Width="750px" 
                AltItemCssClass="AltRows"
                EnableDataViewState="True">
    ...
</ig:WebDataGrid>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM