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
once I have abandoned the input text, I cannot return to it.
I think the problem is that the attribute readonly is added to the input text and not removed after closing the keyboard.
I fixed it adding this lines:
if (o.lockInput && !o.usePreview) {
base.$el.removeAttr("readonly");
}
Inside the following block in base.close function:
if (!o.alwaysOpen) {
base.$keyboard.hide();
base.isVisible = false;
if (o.lockInput && !o.usePreview) {
base.$el.removeAttr("readonly");
}
}
The text was updated successfully, but these errors were encountered:
If I have a keyboard with
usePreview: false
lockInput : true
once I have abandoned the input text, I cannot return to it.
I think the problem is that the attribute readonly is added to the input text and not removed after closing the keyboard.
I fixed it adding this lines:
if (o.lockInput && !o.usePreview) {
base.$el.removeAttr("readonly");
}
Inside the following block in base.close function:
if (!o.alwaysOpen) {
base.$keyboard.hide();
base.isVisible = false;
if (o.lockInput && !o.usePreview) {
base.$el.removeAttr("readonly");
}
}
The text was updated successfully, but these errors were encountered: