Sha256: 661713f72363c8f577cde70d10363b9e80eaef768a645f06ea9abe16327d77a6

Contents?: true

Size: 1.41 KB

Versions: 10

Compression:

Stored size: 1.41 KB

Contents

module ActiveScaffold
  module Helpers
    # Helpers that assist with the rendering of a Form Column
    module FormColumnHelpers
      def active_scaffold_input_file_column(column, options, ui_options: column.options)
        record = options[:object]
        if record.send(column.name)
          # we already have a value? display the form for deletion.
          case ActiveScaffold.js_framework
          when :jquery
            remove_file_js = "jQuery(this).prev().val('true'); jQuery(this).parent().hide().next().show(); return false;"
          when :prototype
            remove_file_js = "$(this).previous().value='true'; p=$(this).up(); p.hide(); p.next().show(); return false;"
          end

          hidden_options = options.merge(:id => options[:id] + '_delete', :name => options[:name].sub("[#{column.name}]", "[delete_#{column.name}]"), :value => 'false')
          custom_hidden_field_tag = hidden_field(:record, column.name, hidden_options)

          content_tag(:div) do
            content_tag(:div) do
              safe_join [get_column_value(record, column), custom_hidden_field_tag, '|',
                         content_tag(:a, as_(:remove_file), :href => '#', :onclick => remove_file_js),
                         content_tag(:div, 'test', :style => 'display: none')], ' '
            end
          end
        else
          file_column_field('record', column.name, options)
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
active_scaffold-3.7.12 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.11.1 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.11 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.10 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.8 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.7 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.6 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.5 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.2 lib/active_scaffold/bridges/file_column/form_ui.rb
active_scaffold-3.7.1 lib/active_scaffold/bridges/file_column/form_ui.rb