Sha256: 01edd66c705e8eb8144c466f8d92a6b76b33b6b467cda411664469dd4c385b00
Contents?: true
Size: 1.53 KB
Versions: 16
Compression:
Stored size: 1.53 KB
Contents
<% # formstrap/datetime_range # # ==== Required parameters # * +form+ - Form object # * +start+ - Hash with all options for the start date input (:attribute is required) # * +end+ - Hash with all options for the end date input (:attribute is required) # # ==== Optional parameters # * +append+ - Display as input group with text on the right-hand side # * +float+ - Use floating labels. Defaults to false # * +hint+ - Informative text to assist with data input. HTML markup is allowed. # * +label+ - Text to display inside label tag. Defaults to the attribute name. Set to false if you don"t want to show a label. # * +plaintext+ - Render input as plain text. # * +prepend+ - Display as input group with text on the left-hand side # * +wrapper+ - Hash with all options for the surrounding html tag # # ==== References # https://headmin.dev/docs/forms/datetime_range # https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datetime-local # https://apidock.com/rails/ActionView/Helpers/FormHelper/datetime_field # # ==== Examples # Basic version # <%= form_with do |form| %#> # <%= render "formstrap/datetime_range", form: form, start: {attribute: :start_date}, end: {attribute: :end_date} %#> # <% end %#> datetime_range = Formstrap::DatetimeRangeView.new(local_assigns) %> <div class="row"> <div class="col"> <%= render "formstrap/datetime", datetime_range.start_options %> </div> <div class="col"> <%= render "formstrap/datetime", datetime_range.end_options %> </div> </div>
Version data entries
16 entries across 16 versions & 1 rubygems