UI - Tab focus to choose value of Attribute type is ASSOCIATION

Dear CUBA platform support team,
Is there any way to implement KeyPress or Tab focus to opens the linked screen to select a value ( or same as comboBox selected) for the Attribute type is ASSOCIATION and Cardinality is MANY_TO_ONE.
Currently, user must be click mouse ( minimal …) to open link screen and choose value.

Thanks,

If you mean opening lookup screens through a PickerField or LookupPickerField, there is the default keyboard shortcut for it - CTRL-ALT-L, see Keyboard Shortcuts - CUBA Platform. Developer’s Manual
You can change the shortcut globally using the application property described in the docs, or change it for a concrete PickerField, for example:


@Named("fieldGroup.myField")
private PickerField myField;

@Override
public void init(Map<String, Object> params) {
    Action lookupAction = myField.getActionNN(PickerField.LookupAction.NAME);
    lookupAction.setShortcut("Ctrl-L");
}

Dear Mr Konstantin Krivopustov,

Thanks so much, i was changed to PickerField and my issue solved .

Regard,
Henry Nguyen