method

render

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: WeekdaySelect
render() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.