将Bootstrap类添加到asp.net mvc webGrid列

5n0oy7gb  于 2023-10-14  发布在  Bootstrap
关注(0)|答案(1)|浏览(183)

我在asp.net mvc web应用程序中有以下WebGrid列:

gridcolumns.Add(new WebGridColumn() { ColumnName ="Description",Header = Html.DisplayNameFor(model => model.Content.FirstOrDefault().Description).ToString(),CanSort=true
,
    Format = @<text>@item.TrimmedDescription</text>});

我的问题是我怎么能添加hidden-sm引导类到上述列,使列将隐藏在小型设备?有人可以建议吗?
谢谢

编辑

我定义的风格如下:

gridcolumns.Add(new WebGridColumn() { ColumnName ="Description",Header = Html.DisplayNameFor(model => model.Content.FirstOrDefault().Description).ToString(),CanSort=true
,
    Format = @<text>@item.TrimmedDescription</text>,Style="hidden-sm"});
var grid = new WebGrid(
                        canPage: true,
                        rowsPerPage: Model.PageSize,
                        canSort: true,
                        ajaxUpdateContainerId: "skillgrid", fieldNamePrefix: "skill");

            grid.Bind(Model.Content, rowCount: Model.TotalRecords, autoSortAndPage: false);
            grid.Pager(WebGridPagerModes.All);

            @grid.GetHtml(htmlAttributes: new { id = "skillgrid" },   // id for ajaxUpdateContainerId parameter
            fillEmptyRows: false,
            tableStyle: "table table-bordered table-hover",
            mode: WebGridPagerModes.All,
            columns: gridcolumns

            );

上面已经删除了小型设备上的描述列,但网格标题仍然显示“描述”。所以现在我得到了错误的WebGrid标题和WebGrid列内容之间的重叠.

ldxq2e6h

ldxq2e6h1#

它有一个style属性,你只需要设置WebGridColumn属性的属性:

style: "yourcssclass"

或:

style = "yourcssclass"

相关问题