You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
by the way... if you specify just :organism_type you can get a strange problem where the select list can't be popped down, (it pops down instantaneously on a click, but then pops back up again)
In a class with a statement like this:
belongs_to :organism_type
In order to have validation_reflection find the validation you must do
validates_presence_of :organism_type_id
but validatious_on_rails/formtastic needs
validates_presence_of :organism_type
by specifying both you can get things working properly, otherwise it only works server side.
The text was updated successfully, but these errors were encountered: