对 Telerik RadGrid 控件中的 GridButtonColumn 进行排序

发布于 2024-10-31 15:30:26 字数 778 浏览 1 评论 0原文

我需要对 C# asp.net 项目中的 GridButtonColumn 进行排序。

我已添加此线程中列出的 C# 类

http://www.telerik.com/community/code-library/aspnet-ajax/grid/filtering-and-sorting-for-gridbuttoncolumn.aspx

我无法得到它去工作。我明白了

类型或命名空间名称 找不到“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

http://www.telerik.com/community/code-library/aspnet-ajax/grid/filtering-and-sorting-for-gridbuttoncolumn.aspx

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 技术交流群。

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

发布评论

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

评论(2

鯉魚旗 2024-11-07 15:30:26

GridButtonColumn 存在于命名空间 Telerik.Web.UI 中。尝试将 VB 代码中的 Imports 指令从 Response 更改

Imports Telerik.WebControls

Imports Telerik.Web.UI

Edit:

GridButtonColumnWithFilteringSorting 是上面文章创建的自定义 GridButtonColumn 的类名称。为了帮助您解决此问题,我们可能需要查看您网站的代码/标记。在上面的文章中,它将自定义按钮列注册为“

<Register TagPrefix="custom" Namespace="GridButtonColumnWithFilteringSortingNS">

您在标记文件中执行了此操作吗?”如果是这样,将任何更改

<telerik:GridButtonColumnWithFilteringSorting .. >

<custom:GridButtonColumnWithFilteringSorting . . >

The GridButtonColumn exists in the namespace Telerik.Web.UI. Try changing the Imports directive in your VB code from

Imports Telerik.WebControls

to

Imports Telerik.Web.UI

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

<Register TagPrefix="custom" Namespace="GridButtonColumnWithFilteringSortingNS">

Did you do this in your markup file? If so change any

<telerik:GridButtonColumnWithFilteringSorting .. >

to

<custom:GridButtonColumnWithFilteringSorting . . >
深府石板幽径 2024-11-07 15:30:26

如果您开发 Web 应用程序项目,则没有 app_code 文件夹。在这种情况下,您可以将 GridButtonColumnWithFiltering.cs 文件放在您想要的任何位置并像这样注册它:

<%@ Register Assembly="YourAssemblyName" TagPrefix="custom" Namespace="GridButtonColumnWithFilteringSortingNS" %>

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:

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