grid.Column(columnName: "groupName", header: "Group Name", style: "HD-td-width-col",
format:span class="@item.groupId groupname">@item.groupName /span),
我正在使用java脚本,但我没有获得span类值.......
答案 0 :(得分:0)
您的代码中遗漏了一些<
和>
。请尝试使用以下代码。
grid.Column(
columnName: "groupName",
header: "Group Name",
style: "HD-td-width-col",
format: @<text>
<span class="@item.groupId groupname">@item.groupName</span>
</text>),