本文介绍了改变滑块到buttonMode的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想通过改变滑块到 buttonMode
my_slider.buttonMode = TRUE;
但它没有显示 handsymbol
。是有任何其他方式来改变滑块到buttonMode? P>
在此先感谢。
解决方案
我在我的项目之一,有类似的问题。试试这个肯定会工作。
// cmp_slider是组件实例
变种MC = cmp_slider.getChildAt(1); //这是一拖按钮。
mc.buttonMode =真;
mc.useHandCursor =真;
I am trying to change the slider into buttonMode
by using
my_slider.buttonMode = true;
but it doesn't shows handsymbol
.Is there any other way to change the slider into buttonMode?.
Thanks in advance.
解决方案
i had the similar issue in one of my project. try this it will definitely work.
// cmp_slider is component instance
var mc = cmp_slider.getChildAt(1); // it is a drag button.
mc.buttonMode = true;
mc.useHandCursor = true;
这篇关于改变滑块到buttonMode的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!