Kendo网格列号格式化

时间:2015-02-13 15:04:49

标签: templates kendo-ui kendo-grid number-formatting

如果绑定2个数据值,如何在kendo列中设置数字格式?在我的例子中,我必须将值与单位绑定,所以我需要一个用2位小数写的值。 我的代码如下:

{
    field: "Quantity",
    title: "Value ",
    width: "70px",
    type: "number",
    format:"{0:n2}",
    template: "#:Quantity# #:Unit#",
    attributes:{style:"text-align:right;"}
},

如果没有将它绑定到单元,它可以很好地工作,但是对于单元我有问题。提前致谢

1 个答案:

答案 0 :(得分:13)

这会将Quantity格式化为带有2位小数的数字

template: '#= kendo.toString(Quantity, "n2")#  #=Unit#'