检查 RadGrid 中是否存在列

发布于 2024-12-15 10:26:05 字数 169 浏览 1 评论 0原文

这不是找专栏。有人有什么建议吗?

if (((RadGrid)sender).Columns.Contains("ClaimNumber"))
    do this...
else
    do this...

我检查了网格的列集合,我可以看到那里的列。

This is not finding the column. Anyone have any suggestions?

if (((RadGrid)sender).Columns.Contains("ClaimNumber"))
    do this...
else
    do this...

I checked the Columns Collection of the grid and I can see the column there.

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

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

发布评论

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

评论(1

放手` 2024-12-22 10:26:05

您需要使用 FindByUniqueNameSafe 方法:

GridColumn col = RadRadGrid1.MasterTableView.Columns.FindByUniqueNameSafe("ColumnName");
if (col != null)
{
    //column exists
}

您还可以使用 LINQ:

if (RadGrid1.MasterTableView.Columns.Cast<GridColumn>().Count(x => x.UniqueName == "Column1") > 0)

You need to use the FindByUniqueNameSafe method:

GridColumn col = RadRadGrid1.MasterTableView.Columns.FindByUniqueNameSafe("ColumnName");
if (col != null)
{
    //column exists
}

You could also use LINQ:

if (RadGrid1.MasterTableView.Columns.Cast<GridColumn>().Count(x => x.UniqueName == "Column1") > 0)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文