I'm using rails default form helper along with date_picker. This is my usage of schedulable.
<%= f.schedule_select :schedule,input_types: {date: :date_picker, time: :time_picker, datetime: :datetime_picker}, style: :bootstrap, until: true, count: true%>
I'm still getting the default date and time pickers instead of bootstrap's date and time pickers. What am I doing wrong?