I'm attempting to modify a Best In Place checkbox that looks like this
best_in_place model, :attribute,
url: model_path(model),
as: :checkbox,
collection: {:false=>"<i class='fa fa-square-o'></i>", :true=>"<i class='fa fa-check-square-o'></i>"}
We have some cases where we need the checkbox to default to "checked" and also to be disabled, but I can't find a way to do this. Does Best In Place support this and if so how can I make it happen?
A couple of things jump out immediately from the README:
...and: