meteor-x-editable-bootstrap icon indicating copy to clipboard operation
meteor-x-editable-bootstrap copied to clipboard

Submit button does not work in some cases

Open guilhermedecampo opened this issue 11 years ago • 2 comments

Hey @nate-strauser,

Submit button does not work in some cases is a known issue as you can see here https://github.com/vitalets/x-editable/issues/105.

Would be cool if you add this work-around in your package.

Change line 103 on boostrap-editable.js

from this.$form.submit($.proxy(this.submit, this)); to this.$form.find('.editable-submit').click($.proxy(this.submit, this));

If it's possible I can do a pull-request =)

guilhermedecampo avatar Dec 15 '14 18:12 guilhermedecampo

I can confirm that this solves my issues with the form submit and it would be great if this was fixed

Thank you! It fixed my issue.

sinsubj avatar Apr 29 '15 01:04 sinsubj