如何在RadGrid事件的DeleteCommand中获取列值

发布于 2024-11-09 08:53:59 字数 496 浏览 4 评论 0原文

如何在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 技术交流群。

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

发布评论

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

评论(2

稚气少女 2024-11-16 08:53:59
Label colTxt = (Label)e.Item.Cells[3].Text;

Label1.Text = colTxt.Text;

试试这个。这对我有用。

Label colTxt = (Label)e.Item.Cells[3].Text;

Label1.Text = colTxt.Text;

Try this. It worked for me.

画尸师 2024-11-16 08:53:59

说该列是“ID”

GridDataItem item = (GridDataItem)e.Item; 
ID = Convert.ToInt32(item.GetDataKeyValue("ID")); 

say the column is 'ID'

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