-
Notifications
You must be signed in to change notification settings - Fork 36
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
focus problems #9
Comments
I am currently not really working on this, but I do accept PRs if you find time to figure this out! |
SOLVED! Here is new solution. ChosenEditor.prototype.createElements = function () {
|
@element150 Thanks a lot! You made my day. Could you please add answer to handsontable issue too? I almost miss this solution if i don't open this repo issues =( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
value: function focus() {
// Add an empty space to texarea. It is necessary for safari to enable "copy" command from menu bar.
this.mainElement.value = ' ';
this.mainElement.select();
}
In version 4.0.0 they updated this function and it causes this TypeError: this.mainElement.select is not a function when you focus cell which is using this editor.
Any idea how to fix it please?
The text was updated successfully, but these errors were encountered: