best_in_place icon indicating copy to clipboard operation
best_in_place copied to clipboard

A RESTful unobtrusive jQuery Inplace-Editor and a helper as a Rails Gem

Results 106 best_in_place issues
Sort by recently updated
recently updated
newest added

I'm doing a best_in_place for an boolean attribute in my index view table finance/index.html.erb ``` ``` If I click on it, the status is changed in my db but it...

I have implemented `best_in_place` for a number field inside my Rails app. The inline editing works, it updates the field in the database but fails to show the updated value...

Hi, i know this issue has been addressed many times, but i still do not see a solution: When using the following column code in ActiveAdmin the order of the...

Is there any support for trix-editor? I've tried using something like ``` $(document).on('best_in_place:activate', function(el) { $(element).trix-editor(); }); ``` but this doesn't seem to work.

Without this, none of the Capybara tests pass (or will even run)

We had a bug come up because we hadn't required `best_in_place.jquery-ui` and were using `as: :date`. Update the docs to make this more explicit.

Hello , my application is RAILS API only and i want to use best in place in active admin. But i think its not working because of RAILS API only,...

So as other users have mentioned the bip_select, bip_area, etc. methods from the TestHelpers module are broken. I figured out it's a CapybaraDriver error. I rebuilt the test_helpers module included...

I'm trying to use this line in a minitest test that uses capybara, poltergeist, and phantomjs: ` bip_select(@gs, :goal_id, Goal.first.name) ` I've read a few questions on StackOverflow where other...

I am using best in place gem and everything is working correct but it sends ajax call in json format I want it in javascript format(my app expects it to...