Is there something like form_remote_tag that does an Ajax.Updater vs Ajax.Request

I am looking for a form helper tag that will output a form tag that uses Ajax.Updater instead of Ajax.Request. Does one exist? I haven't seen anything in the API docs. I am relatively new to rails, but I have been using prototype for a few years, so I am comfortable writing out the form tag to use Ajax.Updater manually if that's the best option.

Thanks in advance, Knox

I am looking for a form helper tag that will output a form tag that uses Ajax.Updater instead of Ajax.Request. Does one exist? I haven't seen anything in the API docs. I am relatively new to rails, but I have been using prototype for a few years, so I am comfortable writing out the form tag to use Ajax.Updater manually if that's the best option.

form_remote_tag will use an Ajax.Updater if you use the :update option

Fred