I'm working with rails' activeadmin and creating a custom form like so:
<%= semantic_form_for [:admin, Client.find(@wedding_cake.client_id), @wedding_cake] do |f| %>
than I want to add an input for a date like so:
<%= f.input :date, as: :datepicker %>
However, I'm getting "Unable to find input class for datepicker" from rails. I've tried including jquery date picker in my gem file, but that didn't change anything. What am I doing wrong?