Update slider value after enter a value in editbox.
이전 댓글 표시
I have a slider that I can use to increment an editbox. However I also need to be able to enter a value in the editbox. If I enter a value in editbox and them I cick on the slider it not work properly (if before I don’t press enter). I try to update the value of the slider on the editbox callback by doing something like:
set(hslider, 'value', val);
But this don’t work properly which I believe is related with the need to add an enter after add the value to a editbox.
댓글 수: 1
Ilham Hardy
2016년 1월 22일
Why you don't want to use enter button?
답변 (1개)
Walter Roberson
2016년 1월 22일
편집: Walter Roberson
2016년 1월 22일
0 개 추천
Correct. The Callback of the Edit box is not invoked until an enter is received.
댓글 수: 6
Armindo
2016년 1월 22일
Walter Roberson
2016년 1월 22일
How would you know that it was needed?
Take a look at my FEX submission "Regular Expression Helper", it uses the key-press function to update strings used in regexp (and displays the output). This would be easy to adapt to update a slider value.
Armindo
2016년 1월 22일
Walter Roberson
2016년 1월 22일
The problem with using the KeyPressFcn is that you do not know whether the user is finished typing unless you see the user type a particular character such as return.
Armindo
2016년 1월 26일
카테고리
도움말 센터 및 File Exchange에서 Simulink 3D Animation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!