如何在 radgrid 的 ItemCommand 事件中更改 radgrid 的 GridButtonColumn 文本?

发布于 2024-10-11 07:01:00 字数 137 浏览 4 评论 0原文

我有一个 radgrid,其中 GridButtonColumn 作为列之一。我需要更改 ItemCommand 事件期间网格中显示的该列的文本。 例如。 如果在 ItemCommand 事件之后文本为“yes”,则应将其更改为“no”。 我们如何实现这一点?

I have a radgrid with GridButtonColumn as one of the column.I need to change that column's text displayed in the grid during ItemCommand event.
for eg.
if text is 'yes' after ItemCommand event, it should be changed to 'no'.
How we can implement this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

何以畏孤独 2024-10-18 07:01:00

请参阅:如何在运行时更改 GridButtonColumn 图像/文本

protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e) 
{ 
    if (e.Item is GridDataItem) 
    { 
        GridDataItem item = (GridDataItem)e.Item;
        LinkButton lbutton = item["ButtonUniqueName"].Controls[0] as LinkButton;
        if (lbutton.Text == "yes") 
        { 
           lbutton.Text = "no";
        } 
    } 
} 

See: How to change GridButtonColumn image/text at runtime

protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e) 
{ 
    if (e.Item is GridDataItem) 
    { 
        GridDataItem item = (GridDataItem)e.Item;
        LinkButton lbutton = item["ButtonUniqueName"].Controls[0] as LinkButton;
        if (lbutton.Text == "yes") 
        { 
           lbutton.Text = "no";
        } 
    } 
} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文