Hi All,
I just started moving to Rails 3.2, Ruby 1.9.3 and ActiveScaffold 3.2.2.
I created fresh application and created generated one table from active scaffold generator.
I have one date field in the table for which i want to use calender date select so i wrote following code.
conf.columns[:reported_date].form_ui = :calendar_date_select
when i am trying to access url i am getting following error.
Routing Error
uninitialized constant ActiveScaffold::Bridges::CalendarDateSelect::ViewHelpers
Try running rake routes for more information on available routes.
My gem file contains
gem 'active_scaffold'
gem 'calendar_date_select'
can anyone tell what is wrong ?? until the time i have added gem 'calender_date_select', active scaffold was working fine.