method

render

rails latest stable - Class: ActionView::Helpers::Tags::WeekdaySelect
render()
public

No documentation available.

# File actionview/lib/action_view/helpers/tags/weekday_select.rb, line 16
        def render
          select_content_tag(
            weekday_options_for_select(
              value || @options[:selected],
              index_as_value: @options.fetch(:index_as_value, false),
              day_format: @options.fetch(:day_format, :day_names),
              beginning_of_week: @options.fetch(:beginning_of_week, Date.beginning_of_week)
            ),
            @options,
            @html_options
          )
        end