首页 > 解决方案 > 关于剑道网格中语言的变化我没有得到数据

问题描述

目前,我正在与 Thymleaf 一起研究 Kendo-grid。我面临一个问题,我正在尝试在剑道网格表中使用多种语言。每当我尝试在网格上应用不同的语言时,<thead>标题标签都会出现应用语言,但似乎数据未显示在网格中<tbody>。当我应用英语时,网格表正确显示数据。

<table>
<thead > 											
<tr>											 
<th><span th:text="#{user_name}" th:remove="tag"></span></th>	
<th><span th:text="#{first_name}" th:remove="tag"></span></th>										</tr>										
</thead>									
<tbody>										    
<tr th:each="user : ${users}" 										 th:object="${user}"										    	th:classappend="${isDeleted} ? item-deleted : ''">				 						    	<td th:text="${user.username}"></td>	
<td th:text="${user.firstname}"></td>										    												 										    </tr>										
</tbody>									
</table>

标签: kendo-uikendo-grid

解决方案


推荐阅读