对 Telerik RadGrid 控件中的 GridButtonColumn 进行排序
我需要对 C# asp.net 项目中的 GridButtonColumn 进行排序。
我已添加此线程中列出的 C# 类
我无法得到它去工作。我明白了
类型或命名空间名称 找不到“GridButtonColumn”
是否需要添加 using 指令?
VB 示例使用Imports Telerik.WebControls
。当我添加 using Telerik.WebControls;
我收到此消息
类型或命名空间名称 “WebControls”不存在于 命名空间“Telerik”(您是否缺少 程序集参考?)
编辑:
我添加了命名空间,现在我收到此错误
Unknown server tag 'telerik:GridButtonColumnWithFilteringSorting
I need to sort a GridButtonColumn in a C# asp.net project.
I've added the c# class listed in this thread
and I can't get it to work. I get this
The type or namespace name
'GridButtonColumn' could not be found
Is there using directive that I need to add?
The VB example uses Imports Telerik.WebControls
. When I add using Telerik.WebControls;
I get this message
The type or namespace name
'WebControls' does not exist in the
namespace 'Telerik' (are you missing
an assembly reference?)
EDIT:
I added the namespace and now I get this error
Unknown server tag 'telerik:GridButtonColumnWithFilteringSorting
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GridButtonColumn 存在于命名空间 Telerik.Web.UI 中。尝试将 VB 代码中的 Imports 指令从 Response 更改
为
Edit:
GridButtonColumnWithFilteringSorting 是上面文章创建的自定义 GridButtonColumn 的类名称。为了帮助您解决此问题,我们可能需要查看您网站的代码/标记。在上面的文章中,它将自定义按钮列注册为“
您在标记文件中执行了此操作吗?”如果是这样,将任何更改
为
The GridButtonColumn exists in the namespace Telerik.Web.UI. Try changing the Imports directive in your VB code from
to
Response to Edit:
GridButtonColumnWithFilteringSorting is the class name of the custom GridButtonColumn that the above article creates. In order to help you with this we probably need to see your code/markup for the your site. In the above article it registers the custom button column as
Did you do this in your markup file? If so change any
to
如果您开发 Web 应用程序项目,则没有 app_code 文件夹。在这种情况下,您可以将 GridButtonColumnWithFiltering.cs 文件放在您想要的任何位置并像这样注册它:
If you develop a web application project there is no app_code folder. In this case you can just put the GridButtonColumnWithFiltering.cs file anywhere you want and register it like this: