-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace TextField by TextArea for PV list Name edition in app-alarm-ui and core-ui #2090
Comments
Feel free to create a pull request that we can approve. |
I try to commit my suggestion in my own branch CSSTUDIO-2090 but I'm not authorized. Do you know if I need specific credentials to contribute ? Thank you (I use my login katysaintin and my github password) |
I don't think there are any restrictions on using github to fork, commit to your fork, then create a PR |
Replace TextField by TextArea in alamr-ui for PV List edition see issue ControlSystemStudio#2090
Replace cast TextField by TextInputControl see issue ControlSystemStudio#2090
Since this change, on our linux systems in the control room, we can no longer enter PV names. |
I'm seeing the same issue on MacOS. The problem occurs in AutoCompleteMenu L91 which assumes that the input component is a TextField. I changed the cast to TextInputControl, which fixes the issue. Will submit a PR once I have done some more testing. |
Yes you are right , I have miss this one. Thank you for your correction, tell me if you have no time to do it. |
Already done, pending in #2118 |
Thanks, that was quick! |
Well, I'm about to release a new version at ESS... |
It will be more convenient to use a TextArea instead of TextField for listing the PV name to add in Alarm Service
Code to change :
Line 45 replace private final TextField name = new TextField(); by private TextArea name = new TextArea();
Line 113 replace TextField by TextInputControl (TextInputControl is the mother-class of TextField and TextArea)
The text was updated successfully, but these errors were encountered: