Displaying 1 result from an estimated 1 matches for "yui_form_remote_tag".
2006 Jul 03
1
help getting plugin to work
...the Yahoo! UI
library similar to the prototype.js and scriptaculous helpers that
come packaged with rails.
just one line in plugins/yui/init.rb
require ''yui_helper''
a little more in plugins/yui/lib/yui_helper.rb
module ActionView
module Helpers
module YuiHelper
def yui_form_remote_tag(options = {})
options[:html] ||= {}
options[:html][:action] = options[:html][:action] ||
url_for(options[:url])
options[:html][:onsubmit] =
"Yui.post_form(''#{options[:html][:action]}'',this);return false;"
options[:html][:met...