module UEditor::Helpers::FormHelper
Public Instance Methods
uetext_area(object_name, method, options = {})
click to toggle source
# File lib/ueditor/helpers/form_helper.rb, line 7 def uetext_area(object_name, method, options = {}) id = options[:id] || options[:id] = SecureRandom.hex text_area(object_name, method, options) + uejs(id) end