RadGrid1.Items 为空
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 rg_results.MasterTableView.Items 而不是 rg_results.Items
use rg_results.MasterTableView.Items instead of rg_results.Items