mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-03 03:38:33 +08:00
PL-8900 Unable to focus table cell with PickerField using Table.requestFocus(item, "column")
This commit is contained in:
parent
1bb15e692a
commit
87a8ef7ec8
@ -53,6 +53,7 @@ public class CubaDateFieldWrapper extends com.vaadin.ui.CustomField {
|
||||
setValidationVisible(false);
|
||||
setShowBufferedSourceException(false);
|
||||
setShowErrorForDisabledState(false);
|
||||
setFocusDelegate(dateField.getDateField());
|
||||
|
||||
setPrimaryStyleName("c-datefield-composition");
|
||||
}
|
||||
|
@ -105,6 +105,8 @@ public class CubaPickerField extends com.vaadin.ui.CustomField implements Action
|
||||
ThemeConstants theme = App.getInstance().getThemeConstants();
|
||||
setWidth(theme.get("cuba.web.CubaPickerField.width"));
|
||||
}
|
||||
|
||||
setFocusDelegate(field);
|
||||
}
|
||||
|
||||
protected void initTextField() {
|
||||
|
@ -48,6 +48,7 @@ public class CubaResizableTextAreaWrapper extends CustomField {
|
||||
setValidationVisible(false);
|
||||
setShowBufferedSourceException(false);
|
||||
setShowErrorForDisabledState(false);
|
||||
setFocusDelegate(textArea);
|
||||
|
||||
CubaResizableTextAreaWrapperServerRpc rpc = new CubaResizableTextAreaWrapperServerRpc() {
|
||||
String oldWidth;
|
||||
|
Loading…
Reference in New Issue
Block a user