Displaying 2 results from an estimated 2 matches for "sidebaritem".
2006 Apr 28
4
can someone help DRY a noob? thanks...
hi all
i''m trying to pass a variable name right round the block and need a hand
to ease my aching brain.
##in my sidebar i have
<li><%= SidebarItem(''catalogue'') %></li>
<li><%= SidebarItem(''provenance'') %></li>
<li><%= SidebarItem(''status'') %></li>
##linked to a helper
def SidebarItem(name)
link_to_remote "#{name}"...
2006 Apr 22
3
quick ''link_to_remote'' question
Hi all
i''m using link_to_remote to render different sets of text-input fields.
i''m setting up links in a sidebar to do this
so, in my _sidebar.rhtml i have
<%= SidebarItem(''catalogue'') %>
this works...(in works.helper.rb)
def SidebarItem(name)
link_to_remote "#{name}",
:update => ''EditFields'',
:url=> {:action => name, :id => @work.id, :layout => false }
end
and i ha...