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
I've stumbled upon an annoying issue when I try to write integration tests with Rspec & Capybara to simulate filling in a text area with x-editable.
While I can set the value with the x-editable setValue() method:
setValue()
$('.editable').editable('setValue', 'foobar')
When I try submitting the form with the submit() method:
submit()
$('.editable').editable('submit')
the patched .save from https://github.com/werein/x-editable-rails/blob/master/vendor/assets/javascripts/editable/rails/editable_form.js.coffee is not called.
.save
I'd try submitting a fix, but it's beyond my current skills :(
The text was updated successfully, but these errors were encountered:
I have this same issue... I've changed 'post' everywhere to 'put', but nothing works.
Sorry, something went wrong.
No branches or pull requests
I've stumbled upon an annoying issue when I try to write integration tests with Rspec & Capybara to simulate filling in a text area with x-editable.
While I can set the value with the x-editable
setValue()
method:When I try submitting the form with the
submit()
method:the patched
.save
from https://github.com/werein/x-editable-rails/blob/master/vendor/assets/javascripts/editable/rails/editable_form.js.coffee is not called.I'd try submitting a fix, but it's beyond my current skills :(
The text was updated successfully, but these errors were encountered: