Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Sencha GXT 网格,其中包含用于显示文件名、文件扩展名和文件大小的列。当数据库中的数据被推送到网格时,所有信息都是正确的,除了 size 。例如,3Kb 的文件将在网格中显示为 3000 。现在,我想将 3000 格式化为 3Kb。如何使用渲染器实现这一点?单元格渲染器可以做到这一点吗?感谢您的时间。
PS:我使用的语言是Java。
在网格的列定义中,您可以指定渲染器回调:
columns:[...,{ header: "blubb", dataIndex: "fileSize", renderer: function(value, meta){ return Math.round(value/1000) + "Kb"; } },...]
希望这可以帮助你。