RadGrid1.Items 为空

发布于 2024-11-26 02:54:19 字数 502 浏览 1 评论 0原文

enter code here protected void btnshortlist_Click(object sender, EventArgs e)
{
    foreach (GridDataItem item in rg_results.Items)
    {
        CheckBox chkselected = (CheckBox)item.FindControl("chkselected");
        if (chkselected.Checked == true)
        {
            Applicant_Status(item.Cells[3].Text.Trim(), 1, 0);
        }
    }
 }

rg_results.Items 为 null,无法进入 foreach 循环 注意:我没有使用 Rad Grid Need Data Source Event,因为它与我的 JavaScript 冲突 请帮我?

enter code here protected void btnshortlist_Click(object sender, EventArgs e)
{
    foreach (GridDataItem item in rg_results.Items)
    {
        CheckBox chkselected = (CheckBox)item.FindControl("chkselected");
        if (chkselected.Checked == true)
        {
            Applicant_Status(item.Cells[3].Text.Trim(), 1, 0);
        }
    }
 }

rg_results.Items is null and cannot enter in foreach loops
Note:I'm not using Rad Grid Need Data Source Event because it is conflict with my javascripts
please help me?

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

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

发布评论

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

评论(1

静谧幽蓝 2024-12-03 02:54:19

使用 rg_results.MasterTableView.Items 而不是 rg_results.Items

use rg_results.MasterTableView.Items instead of rg_results.Items

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