MultiHandleSliderExtender 中的小数(非整数)步骤
我正在使用 MultiHandleSliderExtender
,并且希望值在 0.01-1.00 之间移动。
我尝试使用最小值 = 0,最大值 = 1 步骤 = 100 和小数 = 2 但它不起作用。它只是从 0 跳到 1。
有什么建议吗?
I'm using the MultiHandleSliderExtender
and I want the values to move between 0.01-1.00.
I tried using minimum=0, maximum=1 steps=100 and decimals=2 and it didn't work. It simply jumps from 0 to 1.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请尝试重建您的页面,解决方案可能是由于脚本缓存所致。尝试下面的代码,它对我有用。
Please try rebuilding you Page and Solution might be due to script caching. Try the below code it works for me.
它需要更改
MultiHandleSliderTargets
属性DecimalPlaces=2
以及DecimalPlaces - 用于格式化绑定控件值的小数位数。
有关更多详细信息,请参阅此处
Its need to change
MultiHandleSliderTargets
propertyDecimalPlaces=2
as wellDecimalPlaces - The number of decimal places to format the bound control's value.
for more details see Here