Update slider value after enter a value in editbox.

3 visualizaciones (últimos 30 días)
Armindo
Armindo el 21 de En. de 2016
Comentada: Armindo el 26 de En. de 2016
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.

Respuestas (1)

Walter Roberson
Walter Roberson el 22 de En. de 2016
Editada: Walter Roberson el 22 de En. de 2016
Correct. The Callback of the Edit box is not invoked until an enter is received.
  6 comentarios
Walter Roberson
Walter Roberson el 22 de En. de 2016
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
Armindo el 26 de En. de 2016
Yes indeed. That is a big issue. Thank you for all the help.

Iniciar sesión para comentar.

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by