Module: Admin::IsActiveColumnHelper
- Included in:
- ActivityTypeFieldHelper, ClientsHelper, EmployeesHelper, PaymentsHelper
- Defined in:
- app/helpers/admin/is_active_column_helper.rb
Instance Method Summary collapse
-
#association_options_find(association, conditions = nil) ⇒ Object
Helps us to respect the is_active field on the Employee and Client associations.
-
#is_active_form_column(record, options) ⇒ Object
This is for the Client and Employees controller itself:.
Instance Method Details
#association_options_find(association, conditions = nil) ⇒ Object
Helps us to respect the is_active field on the Employee and Client associations
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'app/helpers/admin/is_active_column_helper.rb', line 28 def (association, conditions = nil) if /^(Employee|Client)/.match association.klass.to_s fkey = $1.foreign_key.to_sym association_id = (@record.respond_to? :activity and @record.activity.respond_to? fkey) ? @record.activity.send(fkey) : @record.send(fkey) conditions = controller.send( :merge_conditions, conditions, ["is_active = ? OR id = ?", true, association_id] ) end super association, conditions end |
#is_active_form_column(record, options) ⇒ Object
This is for the Client and Employees controller itself:
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'app/helpers/admin/is_active_column_helper.rb', line 4 def is_active_form_column(record, ) input_id = 'record_is_active' confirm_prompt = '<div class="warning">'+ '<p>Are you sure you want to deactive "'+h(record.name)+'" ?</p>'+ '<input type="button" value="Yes, deactivate!" onclick="Modalbox.hide()" /> or '+ '<input type="button" value="No, leave it!" onclick="Modalbox.hide();$(\''+input_id+'\').value = \'true\';" />'+ '</div>' modalbox_params = { :title => 'Confirm De-activation', :width => 300} select_tag( [:name], ( [ ["Yes", 'true'], ["No", 'false'] ], record.is_active.to_s ), :id => input_id )+ observe_field( input_id, :function => "if ($F('#{input_id}')=='false'){ Modalbox.show(#{confirm_prompt.to_json},#{modalbox_params.to_json})}" ) end |