forked from crowdint/rails3-jquery-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Padilla
committed
Sep 21, 2011
1 parent
f6a26b6
commit 7d1d8f5
Showing
3 changed files
with
68 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
module Rails3JQueryAutocomplete | ||
module FormtasticPlugin | ||
def autocompleted_input(method, options = {}) | ||
if options.key?(:selected) || options.key?(:checked) || options.key?(:default) | ||
::ActiveSupport::Deprecation.warn( | ||
"The :selected, :checked (and :default) options are deprecated in Formtastic and will be removed from 1.0. " << | ||
"Please set default values in your models (using an after_initialize callback) or in your controller set-up. " << | ||
"See http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html for more information.", caller) | ||
end | ||
|
||
options[:as] ||= "autocompleted_string" | ||
|
||
html_class = [ options[:as], (options[:required] ? :required : :optional) ] | ||
html_class << 'error' if @object && @object.respond_to?(:errors) && !@object.errors[method.to_sym].blank? | ||
|
||
wrapper_html = options.delete(:wrapper_html) || {} | ||
# wrapper_html[:id] ||= generate_html_id(method) | ||
wrapper_html[:class] = (html_class << wrapper_html[:class]).flatten.compact.join(' ') | ||
|
||
if options[:input_html] && options[:input_html][:id] | ||
options[:label_html] ||= {} | ||
options[:label_html][:for] ||= options[:input_html][:id] | ||
end | ||
|
||
# input_parts = self.class.inline_order.dup | ||
# input_parts = input_parts - [:errors, :hints] if options[:as] == :hidden | ||
|
||
list_item_content = input_parts.map do |type| | ||
send(:"inline_#{type}_for", method, options) | ||
end.compact.join("\n") | ||
|
||
return template.content_tag(:li, Formtastic::Util.html_safe(list_item_content), wrapper_html) | ||
end | ||
|
||
|
||
protected | ||
def autocompleted_string_input(method, options) | ||
self.label(method, options_for_label(options)) << autocomplete_field(method, options.delete(:url), options) | ||
end | ||
end | ||
end |