Html.Grid 右对齐列中的数据

发布于 2024-09-14 23:43:00 字数 57 浏览 4 评论 0原文

在 Html.Grid 中,我们如何确保列中的数据(例如货币金额)正确对齐?

谢谢。

In an Html.Grid, how can we ensure that data in the column (e.g. currency amounts) gets right aligned?

Thanks.

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

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

发布评论

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

评论(2

你げ笑在眉眼 2024-09-21 23:43:00

你是说在 MvcContrib 网格中?

您可以使用类似:

column.For(x => x.Amount).Attributes(style => "text-align:right");

或更简洁的方式,您可以设置一个类:

column.For(x => x.Amount).Attributes(@class => "right-align");

并在该类上设置适当的样式规则。

You mean in the MvcContrib Grid?

You could use something like:

column.For(x => x.Amount).Attributes(style => "text-align:right");

or more tidily you could set a class:

column.For(x => x.Amount).Attributes(@class => "right-align");

and set an appropriate style rule on that class.

情绪少女 2024-09-21 23:43:00

这对我有用。在网格中 htmlAttributes 为结果表分配一个 id。在此示例中为“gridT”。在 CSS 中为“#gridT”创建一个样式,使第二列的文本左对齐。

@grid.GetHtml(
.
.
   htmlAttributes: new { id = "gridT" },
        columns: grid.Columns(
        grid.Column(columnName: "ID", header: "ID"),
        grid.Column(columnName: "Name", header: "Name")

<style>
    #gridT th:nth-child(2) {
            text-align: left;
    }
</style>

第二列“名称”将左对齐。

Here's what worked for me. Within the grids htmlAttributes assign the resulting table an id. In this example "gridT". In the CSS create a style for "#gridT", for the second column to align the text left.

@grid.GetHtml(
.
.
   htmlAttributes: new { id = "gridT" },
        columns: grid.Columns(
        grid.Column(columnName: "ID", header: "ID"),
        grid.Column(columnName: "Name", header: "Name")

<style>
    #gridT th:nth-child(2) {
            text-align: left;
    }
</style>

The second column "Name" will be left aligned.

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