delete_command事件中的数据项

本文关键字:数据项 事件 command delete | 更新日期: 2023-09-27 18:30:44

我有一个带有delete_command事件的辐射网格

protected void PointsAccountDefinitionGrid_DeleteCommand(object sender, GridCommandEventArgs e)
{
    GridDataItem item = (GridDataItem)e.Item;
    string giftID = item["giftId"].Text;
}

但 giftID 返回 " " (空字符串)

任何帮助??

delete_command事件中的数据项

请尝试使用以下代码片段。

.ASPX

<MasterTableView DataKeyNames="ID">
        <Columns>
            <telerik:GridBoundColumn DataField="Name" UniqueName="MyName" HeaderText="Name">
            </telerik:GridBoundColumn>
            <telerik:GridTemplateColumn>
                <ItemTemplate>
                    <asp:TextBox ID="TextBox1" runat="server" Text='<%# Eval("Name") %>'></asp:TextBox>
                </ItemTemplate>
            </telerik:GridTemplateColumn>
            <telerik:GridEditCommandColumn>
            </telerik:GridEditCommandColumn>
        </Columns>
    </MasterTableView>

ASPX.CS

protected void RadGrid1_DeleteCommand(object sender, GridCommandEventArgs e)
{
    GridDataItem item = e.Item as GridDataItem;
    string strID = item.GetDataKeyValue("ID").ToString(); //Using DataKey
    string strName1 = item["MyName"].Text; // Using BoundColumn UniqueName
    string strName2 = (item.FindControl("TextBox1") as TextBox).Text; // Using TemplateColumn Control
}