gpt4 book ai didi

jquery - 格式 : "{0:n0}" is not working if I use rowTemplate in kendoGrid

转载 作者:行者123 更新时间:2023-12-01 00:19:01 27 4
gpt4 key购买 nike

如果我在网格中使用 rowTemplate,数字格式将不起作用。

如果我评论 rowTemplate 行号格式工作正常..rowTemplate 和格式之间是否有任何关系:{0,n0}?在这里,我使用行模板从数据库获取属性值。

<script id="SellTemplate" type="text/x-kendo-tmpl">
<tr>
<td>
${Fore}
</td>
<td align="Left">
<img src="/Images/${ Indicator }.png" width="20" height="20" />
</td>
</tr>
</script>

$("#grid1").kendoGrid({
width: 1500,
dataSource: data.d,
resizable: true,
rowTemplate:kendo.template($("#SellTemplate").html()),;
kendo.template($("#SellTemplate").html()),
height: 750,
selectable: true,
columns: [
{ title: 'Fore', field: 'Fore', width: '12%', format: "{0:n0}", sortable: true },
{ title: 'Indicator', field: 'Indicator', width: '4%', sortable: true},
]
});

最佳答案

当您指定rowTemplate时,您可以完全控制网格行渲染。内置行模板被自定义行模板覆盖。不过,您仍然可以格式化值 - 使用 kendo.format模板中的函数:

    <td>
${kendo.format("{0:n0}", Fore)}
</td>

关于jquery - 格式 : "{0:n0}" is not working if I use rowTemplate in kendoGrid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13838837/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com