如何在RadGrid事件的DeleteCommand中获取列值
如何在DeleteCommand 事件中获取RadGrid 中特定列的值?我尝试了这些方法,但它们都返回空值:
GridDataItem da = e.Item as GridDataItem;
string name = da["materialName"].Text;
或
name = RadGrid1.Items[e.Item.ItemIndex]["materialName"].Text;
或
name = RadGrid1.MasterTableView.Items[e.Item.ItemIndex]["materialName"].Text;
或
name = RadGrid1.MasterTableView.Items[e.Item.RowIndex]["materialName"].Text;
How can I get the value of a specific column in a RadGrid on DeleteCommand event? I tried these ways, but they all return empty values:
GridDataItem da = e.Item as GridDataItem;
string name = da["materialName"].Text;
or
name = RadGrid1.Items[e.Item.ItemIndex]["materialName"].Text;
or
name = RadGrid1.MasterTableView.Items[e.Item.ItemIndex]["materialName"].Text;
or
name = RadGrid1.MasterTableView.Items[e.Item.RowIndex]["materialName"].Text;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个。这对我有用。
Try this. It worked for me.
说该列是“ID”
say the column is 'ID'