How to allow only the input of numeric data to uitable and text box?

조회 수: 6 (최근 30일)
Pedro Guevara
Pedro Guevara 2019년 6월 11일
댓글: Pedro Guevara 2019년 6월 13일
Good morning. I have the following problem I have a uitable in main GUI that has "n" rows (the rows depend on the value that the user enters in a text box) and 10 columns. I require a code (something like a keypresskeypress event) that allows me to evaluate and discard the entered data that are not numeric both in the uitable and in some text boxes that I have in the main GUI. I do not know much about event management in MATLAB and I'm having a lot of problems with this. My uitable is called ("TablaDatosElementos") and the text box that allows creating the number of rows is called ("NumElem") Thank you very much and I hope you can help me.
  댓글 수: 6
Pedro Guevara
Pedro Guevara 2019년 6월 12일
I read this documentation and many things that are beyond my understanding. How can I use it to use it? Is not there a way to do it with the tools of MATLAB? Thank you.

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2019년 6월 12일
Edit boxes (uicontrol):
You need to set a KeyPressFcn callback.
The first time KeyPressFcn fires after the control gets focus, you can reliably retrieve the String property to find out what is already there.
After that, the String property will not be updated until the control loses focus or the user presses enter, so you need to keep track of every character yourself, keeping an internal buffer of what you have seen and what the current state is. You can update the String property yourself, but it will still read back what it had when the control gained focus, but your changes will affect what is retrieved once focus loss / enter pressed.
With KeyPressFcn in place, the uicontrol will not handle backspace / delete itself: you will need to recognize the characters and adjust your internal buffer accordingly. Most people who do this do not bother to recognize the cursor keys to support positioning within the input.
You will need to keep track of the state: + and - only permitted as the first character, period only accepted once, must have at least one digit before or after the period or on both sides of the period, but period by itself is not valid.
  댓글 수: 5
Walter Roberson
Walter Roberson 2019년 6월 12일
The link that I gave earlier is to documentation by the person who literally wrote the book on using Java with matlab.
Pedro Guevara
Pedro Guevara 2019년 6월 13일
Hello again. Thinking about it, maybe I do not require that the validation be done "immediately", it can be given in such a way that when passing from one cell to another (of my uitable "TableDataElements") the validation action is executed, erasing from that first cell the characters that will not be numeric, and as I understand this can be achieved with the "CellEditCallback" function, but I do not know how to create that code. Maybe this way you do not have to resort to JAVA tools for code generation. Under this new condition I do not know if it is easier for you to help me with the problem. Thank you.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by