Methods
Public Instance methods
ext_date_select(object_name, method, options = {}, html_options = {})

Returns an ExtJs Calendar

  Examples:
    =ext_date_select :post, :created_at
     # File lib/view/helpers/view_helper.rb, line 101
101:         def ext_date_select(object_name, method, options = {}, html_options = {})
102:           InstanceTag.new(object_name, method, self, options.delete(:object)).to_ext_date_select_tag(options, html_options)
103:         end
ext_datetime_select(object_name, method, options = {}, html_options = {})

Returns an ExtJs Calendar and a Time selector

  Examples:
    =ext_datetime_select :post, :updated_at
     # File lib/view/helpers/view_helper.rb, line 110
110:         def ext_datetime_select(object_name, method, options = {}, html_options = {})
111:           InstanceTag.new(object_name, method, self, options.delete(:object)).to_ext_datetime_select_tag(options, html_options)
112:         end