Class: Redmine::FieldFormat::List
- Inherits:
-
Base
- Object
- Base
- Redmine::FieldFormat::List
show all
- Defined in:
- lib/redmine/field_format.rb
Overview
Instance Method Summary
collapse
-
#bulk_edit_tag(view, tag_id, tag_name, custom_field, objects, value, options = {}) ⇒ Object
-
#edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object
-
#query_filter_options(custom_field, query) ⇒ Object
Methods inherited from Base
#after_save_custom_value, #before_custom_field_save, #cast_custom_value, #cast_single_value, #cast_value, field_attributes, #formatted_custom_value, #formatted_value, #group_statement, #join_for_order_statement, #label, #name, #order_statement, #possible_custom_value_options, #possible_values_options, #set_custom_field_value, #target_class, #validate_custom_field, #validate_custom_value, #validate_single_value, #value_from_keyword
#uri_with_safe_scheme?
Methods included from I18n
#current_language, #day_letter, #day_name, #find_language, #format_date, #format_hours, #format_time, #l, #l_hours, #l_hours_short, #l_or_humanize, #languages_options, #ll, #lu, #month_name, #set_language_if_valid, #valid_languages
Instance Method Details
#bulk_edit_tag(view, tag_id, tag_name, custom_field, objects, value, options = {}) ⇒ Object
572
573
574
575
576
577
578
|
# File 'lib/redmine/field_format.rb', line 572
def bulk_edit_tag(view, tag_id, tag_name, custom_field, objects, value, options={})
opts = []
opts << [l(:label_no_change_option), ''] unless custom_field.multiple?
opts << [l(:label_none), '__none__'] unless custom_field.is_required?
opts += possible_values_options(custom_field, objects)
view.select_tag(tag_name, view.options_for_select(opts, value), options.merge(:multiple => custom_field.multiple?))
end
|
#edit_tag(view, tag_id, tag_name, custom_value, options = {}) ⇒ Object
564
565
566
567
568
569
570
|
# File 'lib/redmine/field_format.rb', line 564
def edit_tag(view, tag_id, tag_name, custom_value, options={})
if custom_value.custom_field.edit_tag_style == 'check_box'
check_box_edit_tag(view, tag_id, tag_name, custom_value, options)
else
select_edit_tag(view, tag_id, tag_name, custom_value, options)
end
end
|
#query_filter_options(custom_field, query) ⇒ Object
580
581
582
|
# File 'lib/redmine/field_format.rb', line 580
def query_filter_options(custom_field, query)
{:type => :list_optional, :values => lambda { query_filter_values(custom_field, query) }}
end
|