We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey @nate-strauser,
Submit button does not work in some cases is a known issue as you can see here vitalets/x-editable#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));
this.$form.submit($.proxy(this.submit, this));
this.$form.find('.editable-submit').click($.proxy(this.submit, this));
If it's possible I can do a pull-request =)
The text was updated successfully, but these errors were encountered:
I can confirm that this solves my issues with the form submit and it would be great if this was fixed
Sorry, something went wrong.
Thank you! It fixed my issue.
No branches or pull requests
Hey @nate-strauser,
Submit button does not work in some cases is a known issue
as you can see here vitalets/x-editable#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 =)
The text was updated successfully, but these errors were encountered: