Sha256: e103a30fb82d402488cfa35151026a75144e4a8550ea7db00a03b6586a86f065

Contents?: true

Size: 1.62 KB

Versions: 17

Compression:

Stored size: 1.62 KB

Contents

class ActiveScaffold::Bridges::TinyMce
  module Helpers
    def self.included(base)
      base.class_eval do
        include FormColumnHelpers
        include SearchColumnHelpers
      end
    end

    module FormColumnHelpers
      def self.included(base)
        base.alias_method_chain :onsubmit, :tiny_mce
      end

      def active_scaffold_input_text_editor(column, options)
        options[:class] = "#{options[:class]} mceEditor #{column.options[:class]}".strip
				
				settings = { :theme => 'simple' }.merge(column.options[:tinymce] || {})
        settings = settings.to_json
				settings = "tinyMCE.settings = #{settings};"

        html = []
        html << send(override_input(:textarea), column, options)
        html << javascript_tag(settings + "tinyMCE.execCommand('mceAddControl', false, '#{options[:id]}');") if request.xhr? || params[:iframe]
        html.join "\n"
      end

      def onsubmit_with_tiny_mce
        case ActiveScaffold.js_framework
        when :jquery
          submit_js = 'tinyMCE.triggerSave();jQuery(\'textarea.mceEditor\').each(function(index, elem) { tinyMCE.execCommand(\'mceRemoveControl\', false, jQuery(elem).attr(\'id\')); });'
        when :prototype
          submit_js = 'tinyMCE.triggerSave();this.select(\'textarea.mceEditor\').each(function(elem) { tinyMCE.execCommand(\'mceRemoveControl\', false, elem.id); });'
        end
        [onsubmit_without_tiny_mce, submit_js].compact.join ';'
      end
    end

    module SearchColumnHelpers
      def self.included(base)
        base.class_eval { alias_method :active_scaffold_search_text_editor, :active_scaffold_search_text }
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
active_scaffold-3.4.17 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.16 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.14 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.13 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.12 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.11 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.10 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.9 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.8 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.7 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.5 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.4 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.3 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.2 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.1 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.0.1 lib/active_scaffold/bridges/tiny_mce/helpers.rb
active_scaffold-3.4.0 lib/active_scaffold/bridges/tiny_mce/helpers.rb