如何使用资源文件.resx在mvcgrid.net中获取已翻译的列标题文本

时间:2015-12-11 12:48:45

标签: internationalization mvcgrid.net

如何使用资源文件.resx在mvcgrid.net中获取已翻译的列标题文本?

1 个答案:

答案 0 :(得分:0)

有一个本地化示例:http://mvcgrid.net/demo/localization

但是我们是通过_Grid.cshtml视图完成的,这个视图配置如下:

GridDefaults gridDefaults = new GridDefaults()
{
      RenderingMode = RenderingMode.Controller,
      ViewPath = "~/Views/MVCGrid/_Grid.cshtml",
      NoResultsMessage = "Sorry, no results were found"
};

并在_Grid.cshtml中循环遍历列:

<tr>
    @foreach (var col in Model.Columns)
    {
        var thStyleAttr = !String.IsNullOrWhiteSpace(ColumnStyle(col)) ? String.Format(" style='{0}'", ColumnStyle(col)) : "";
        <th onclick='@Html.Raw(ColumnOnClick(col))' @(Html.Raw(thStyleAttr))>@DbRes.T(col.HeaderText, "Grids") @(SortImage(col))</th>
    }
</tr>

请注意,我们这里没有使用资源,但是我们正在使用这个库:https://github.com/RickStrahl/Westwind.Globalization但我认为它应该是相同的想法。