检查 RadGrid 中是否存在列
这不是找专栏。有人有什么建议吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 FindByUniqueNameSafe 方法:
您还可以使用 LINQ:
You need to use the
FindByUniqueNameSafe
method:You could also use LINQ: