Telerik MVC 网格的全局设置

发布于 2024-11-23 21:09:05 字数 85 浏览 2 评论 0原文

有什么方法可以设置一些格式,例如 应用程序级别的网格的可滚动宽度高度应用于应用程序中的所有网格,以便我可以避免
更改应用程序中的每个网格

Is there any way that i can set some formatting such as
scrollable, width height of grid at application level that are applied to all the grids in the application so that I could avoid
changing every grid in application

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

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

发布评论

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

评论(1

幼儿园老大 2024-11-30 21:09:05

您可以为 HtmlHelper 创建自定义扩展方法并在其中配置网格。请改用该方法。这是一些示例代码:

public static class GridHtmlHelperExtensions
{        
        public static GridBuilder<T> Grid<T>(this HtmlHelper html) 
            where T : class
        {
            var builder = html.Telerik().Grid<T>();

            builder.Pageable();
            builder.Sortable();

            return builder;
        }
}

然后在您看来:

<%: Html.Grid<MyModel>().Name("MyGrid") %>

You can create a custom extension method for HtmlHelper and configure the grid there. Use that method instead. Here is some sample code:

public static class GridHtmlHelperExtensions
{        
        public static GridBuilder<T> Grid<T>(this HtmlHelper html) 
            where T : class
        {
            var builder = html.Telerik().Grid<T>();

            builder.Pageable();
            builder.Sortable();

            return builder;
        }
}

And then in your view:

<%: Html.Grid<MyModel>().Name("MyGrid") %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文