vitalets / angular-xeditable

Edit in place for AngularJS
http://vitalets.github.io/angular-xeditable
MIT License
1.91k stars 403 forks source link

Side by Side forms in Safari 11 won't let go of focus #714

Closed logan-jobzmall closed 6 years ago

logan-jobzmall commented 6 years ago

http://jsfiddle.net/zjtoy868/8/

See my JSFiddle. The behavior is slightly different than what I am seeing on my app (literally I can see the focus going between the first field of each form and I can't remove focus even using form.blur(); or input.blur();. Although the behavior isn't exactly the same you should be able to see that on Safari 11 it is almost impossible to get to another input underneath on either form. Thanks!

ckosloski commented 6 years ago

Try setting editableOptions.activate = 'none'; It appears that the two forms are competing for the focus since the default activate is focus http://vitalets.github.io/angular-xeditable/#ref-options

logan-jobzmall commented 6 years ago

Testing now.... Thanks!

logan-jobzmall commented 6 years ago

Worked! Thank you