这是 mvc 中剑道网格的示例我想在网格中对列进行文本换行。有人可以帮忙吗?我已经尝试过使用 css 但仍然无法正常工作。生产线正在开箱...
columns.Bound(o => o.SectionClass).Width(100).Title("Class");
columns.Bound(o => o.Title).Width(100).HtmlAttributes(new { @class = "txtovflw" });
columns.Bound(o => o.Description).Width(100).HtmlAttributes(new { @class = "txtovflw" });
columns.Bound(o => o.DueDate).Width(80).Title("Due Date");
columns.Template(e => { }).ClientTemplate(
"<a onclick=\"ViewHW( '#=data.SectionHomeWorkId#')\" id=\"viewHW\" class=\"view-grid-img grid-view-btn\" title=\"View\" data-id=\"<#= data.SectionHomeWorkId
#>\">View</a>")
.Title("View")
.Width(50);
})
.txtovflw
{
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}