hzamani / acts_as_relation

Multi table Inheritance for rails
http://hzamani.github.com/acts_as_relation/
MIT License
180 stars 58 forks source link

MultiparameterAssignmentErrors when passing date_select to parent class #22

Closed nporteschaikin closed 10 years ago

nporteschaikin commented 12 years ago

I have a model Resume with subclasses "Education" and "Employment." The parent class has time_start and time_end parameters. When I create a new Education object, for example, I receive a Multiparameter assignment error (two, actually - one for each select).

hzamani commented 12 years ago

what is your db schema?

CrisSoFresh commented 10 years ago

I had a similar issue with Formtastic (ActiveAdmin), and the solution was to don't use 2 or 3 fields for date inputs, you should to use a single input with a date picker.

Good luck!