在哪里可以找到关于kendoGrid columns.format的文档



我在Kendo UI jQuery API上找到了以下关于columns.format的页面:

https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columns.format

在文档中,它给出了几个格式值的例子:

format: "{0: yyyy-MM-dd HH:mm:ss}"
format: "{0:c}"

但是,在哪里可以找到可以为格式指定哪些值的解释?例如,

  • 如何指定要将数字格式化为小数点后两位的百分比?

  • {0:c}中的0是什么意思?

  • 为什么格式表示为{0:c}:表示什么?

{0:c}是kendo.format方法的语法。0表示要格式化的第一个值,c表示将其格式化为货币值。:只是值位置和格式语法之间的分隔符。在这里你可以看到一个例子,其中有两个值传递给kendo.format:

console.log(kendo.format("{0:c} - {1:c}", 12, 24)); // outputs "$12.00 - $24.00"

示例来自:https://docs.telerik.com/kendo-ui/api/javascript/kendo/methods/format

对于百分比格式,可以使用p格式:

"p〃--渲染百分比(数字乘以100(。

format: "{0:p}"

例如,值0.2614将显示为26.14%

有关剑道格式的详细说明,请访问:https://docs.telerik.com/kendo-ui/globalization/intl/numberformatting

相关内容

  • 没有找到相关文章

最新更新