Pablo Brasero
Pablo Brasero
@brenoperucchi - I think you are generally on the right track. At the moment Administrate doesn't support this, but it could be fixed by going through the code addressing all...
The build appears to be passing now. Has anything changed?
@nickrivadeneira, thank you for the report. I see what you mean. I'm unsure as to how to fix this. On one hand, I feel that defining the dashboard only to...
Unfortunately, this is not possible at present. For this to work, the `HasMany` field would have to link to a different version of the `Product` dashboard. One under `/admin/programs/:id/products`, as...
@richardonrails - I recommend creating a new field type; say `Field::HasOneLink` that behaves as you expect. You can copy (or perhaps inherit) the existing `Field::HasOne` and build on top of...
I agree that those duplicates should not appear. There must be some SQL magic we can apply there to fix this issue. In the longer term, ideally I would like...
Do you mean "fields that inherit from `Administrate::Field::Associative`" instead? `Select` fields don't use selectize (I think...?) That aside, this might be a good idea, but I'm worried about cases where...
Good point. I had a look at the code and I don't see a reason why we couldn't add this feature. I think it would involve changes to the following...
Thank you @carlost. Yeah, there are a few places where this happens, and I'm currently working on something to fix it more cleanly (https://github.com/thoughtbot/administrate/pull/1941). Having said that, my changes may...
Associations of type `has_and_belongs_to_many`, using a join table like the one you describe, do work with Administrate. I just had a quick check and could get it working. Your error...