link_to_remote( area.name, { :update => "content", :url => { ...
} }, {
:title => area.name } )
name: first argument (this becomes the text between the anchor tags)
options: second argument, a hash of the method options
html_options: third argument, a hash of html attributes
On 4/13/06, Jeff Jones <rurounijones@hotmail.com>
wrote:>
> Hello all.
>
> I am trying to add a title to a link_to_remote created AJAX link.
>
> What I want to create is:
>
> <a href="#" title="VALUE-HERE" onclick="new
Ajax.Updater(''content'',
> ''/area/show/28/40'', {asynchronous:true,
evalScripts:true}); return
> false;">Area Name</a>
>
> However I cannot seem to get it to work, the API says that
> link_to_remote is
>
> link_to_remote(name, options = {}, html_options = {})
>
> If I try:
>
> <%= link_to_remote area.name, :update => ''content'',
:title => area.name,
> :url => { :controller => ''area'', :action =>
''show'', :client_id =>
> area.client_id, :id => area.id } -%>
>
> Then the title isn''t created. if I try anything else (Putting the
:title
> and :url inside a pair of curly brackets for example):
>
> <%= link_to_remote area.name, :update => ''content'',
{ :title =>
> area.name, :url => { :controller => ''area'', :action
=> ''show'',
> :client_id => area.client_id, :id => area.id } } -%>
>
> Then I get syntax errors. Could anyone give me the syntax required to
> get the above html?
>
> Thanks
>
> Jeff
>
> --
> Posted via http://www.ruby-forum.com/.
> _______________________________________________
> Rails mailing list
> Rails@lists.rubyonrails.org
> http://lists.rubyonrails.org/mailman/listinfo/rails
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://wrath.rubyonrails.org/pipermail/rails/attachments/20060413/6261885e/attachment.html