gpt4 book ai didi

knockout.js - 将 Kendo UI 微调器限制为没有小数的整数

转载 作者:行者123 更新时间:2023-12-01 11:40:33 30 4
gpt4 key购买 nike

当尝试将剑道微调器与 knockout 绑定(bind)一起使用时,我提供了属性“小数”并将其设置为“0”。我希望不显示小数点,也不允许小数点。 The problem is, when I use the spinner I get no decimals, but when the value is selected the displayed number defaults back to a 2 decimal display.我想使用它,但我不能,除非我能够将显示和输入限制为仅整数。有没有人对同样的问题有任何经验?

data-bind="kendoNumericTextBox: { value: UnpaidMinuteDuration, min: 0,
max: 480, step: 5, decimals: 0 }"

Kendo UI Spinner With unwanted Decimals

最佳答案

设置decimals属性是不够的,因为它只控制“输入模式”。

要同时更改您的值的显示方式,您需要设置 format propertystring format不显示小数:

data-bind="kendoNumericTextBox: { 
value: UnpaidMinuteDuration,
min: 0,
max: 480,
step: 5,
decimals: 0,
format: '0.' }"

演示 JSFiddle .

关于knockout.js - 将 Kendo UI 微调器限制为没有小数的整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21288360/

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