Hi,
when a required attribute is left empty, upon form submission, a tool-tip is shown on the field.
When the required attribute is a relation, the client-side navigation does not work.
In Chrome there is no visible reaction, but in the console the following error pops up:
An invalid form control with name='property[feature_id]' is not focusable.
In Firefox, the tooltip shows up in a completely wrong location (see picture below).
I'm pretty sure the the cause is that for filtering-select, the invisible select tag has the attribute
required="required"
and this freaks out Chrome and breaks the positioning of the tooltip on Firefox.
I believe that for associations, the required attribute needs to be moved to the visible controls.

I'd gladly contribute a pull-requrest myself, but I don't understand very much the form-rendering logic in rails-admin.
Hi,
when a required attribute is left empty, upon form submission, a tool-tip is shown on the field.
When the required attribute is a relation, the client-side navigation does not work.
In Chrome there is no visible reaction, but in the console the following error pops up:
An invalid form control with name='property[feature_id]' is not focusable.In Firefox, the tooltip shows up in a completely wrong location (see picture below).
I'm pretty sure the the cause is that for filtering-select, the invisible select tag has the attribute
required="required"and this freaks out Chrome and breaks the positioning of the tooltip on Firefox.
I believe that for associations, the required attribute needs to be moved to the visible controls.
I'd gladly contribute a pull-requrest myself, but I don't understand very much the form-rendering logic in rails-admin.