Bootstrap-datepicker-rails + helper

Cześć,

/środowisko: Rails 5.1.2, bootstrap/

Używam jako kalendarza gem 'bootstrap-datepicker-rails' ale zrezygnowałem z jego obsługi przy pomocy skryptu js i pewne ustawienia konfiguruje na _form'ie. Mam więc takie coś:

        <div class="form-group col-sm-6">
          <%= f.label :load_date, class: 'control-label' %>
          <%= f.text_field :load_date,
                            data: { provide: "datepicker",
                                    'date-language': 'pl', 
                                    'date-format': 'yyyy-mm-dd',
                                    'weekStart': '6', 
                                    'date-autoclose': 'true', 
                                    'date-today-btn': 'linked',
                                    'date-today-highlight': 'true'}, 
                            class: 'form-control input-sm', 
                            disabled: input_disabled %>
        </div>

Podpowiedzcie proszę, jak zrobić helper’a (my_datepicker_field), abym mógł na formularzu stosować np. coś takiego:

        <div class="form-group col-sm-6">
          <%= f.label :load_date, class: 'control-label' %>
          <%= f.my_datepicker_field :load_date,
                            class: 'form-control input-sm', 
                            disabled: input_disabled %>
        </div>

Wdzięczny będę za pomoc.

Pozdrawiam

Tu masz coś podobnego https://github.com/plataformatec/simple_form/wiki/Custom-inputs-examples#date-time-picker-for-twitter-bootstrap-3-using-the-datetimepicker-js-library, ale będzie f.Input …, as: :my_date_picker.

Dzięki