You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ColorPicker has a private ExtendedColorPicker called picker. ExtendedColorPicker extends BasicColorPicker. BasicColorPicker has a private VisValidatableTextField called hexField. I'd like to be able to programmatically give keyboard focus to the hexField. However, because hexField is private, there's no way to get a reference to it in order to call Stage.setKeyboardFocus() passing hexField (It also doesn't have name, so there's no way to search for it by name).
This issue is to request adding some way to get access to a reference to the hexField member in order to set the keyboard focus, or to add a method to ColorPicker to request that it set the keyboard focus to the hexField
The text was updated successfully, but these errors were encountered:
I'm not sure focusing by default would take care of all relevant use-cases. For example, imagine I want to add the hex field to a list of Actors that I'd cycle focus through with the tab button. I'd need to be able to get a reference to the field in order to focus on it in response to certain user inputs.
ColorPicker
has a privateExtendedColorPicker
calledpicker
.ExtendedColorPicker
extendsBasicColorPicker
.BasicColorPicker
has a privateVisValidatableTextField
calledhexField
. I'd like to be able to programmatically give keyboard focus to thehexField
. However, becausehexField
is private, there's no way to get a reference to it in order to callStage.setKeyboardFocus()
passinghexField
(It also doesn't have name, so there's no way to search for it by name).This issue is to request adding some way to get access to a reference to the
hexField
member in order to set the keyboard focus, or to add a method toColorPicker
to request that it set the keyboard focus to thehexField
The text was updated successfully, but these errors were encountered: