Parent

Class/Module Index [+]

Quicksearch

DatepickerInput

Public Instance Methods

controls_wrapper_html_options() click to toggle source
# File app/inputs/datepicker_input.rb, line 14
def controls_wrapper_html_options
super.merge(:class=> "datepicker date input-append", 'data-date'.to_sym =>I18n.l(Date.today()).to_s, 'data-date-format'.to_sym=>I18n.t('date.formats.default-picker'))
end
html_options() click to toggle source
# File app/inputs/datepicker_input.rb, line 6
def html_options
        super
        #super.merge(:default => Date.today)
end
input_html_options() click to toggle source
# File app/inputs/datepicker_input.rb, line 2
def input_html_options
        super
        #super.merge(:class => "input-append date")
end
options() click to toggle source
# File app/inputs/datepicker_input.rb, line 23
        def options
                super
#d.merge(:class=>"datepicker")
                #super.merge(:append_content=>'<span class="add-on input-append"
                #super.merge(:append_content=>'<span class="add-on" ><i class="icon-th"></i></span>')
        end
to_html() click to toggle source
# File app/inputs/datepicker_input.rb, line 17
def to_html
        bootstrap_wrapping do
        builder.text_field(method, input_html_options) +
       '<span class="add-on" ><i class="icon-th"></i></span>'.html_safe()
end
end
wrapper_html_options() click to toggle source
# File app/inputs/datepicker_input.rb, line 10
def wrapper_html_options
        super.merge(:class=>"")
        #super.merge(:class=>"datepicker",'date-date-format'.to_sym=>"%d.%m.%Y")
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.