Displaying 1 result from an estimated 1 matches for "rowformat".
Did you mean:
row_format
2006 Apr 26
8
Newbie: Hide div I''ve just show using link_to_remote?
...show details for an item that''s clicked. I''d
like to hide the div with the next click, or alternatively have a "Hide"
link within my div.
What is the best way to accomplish this?
Here''s my existing code:
<% for task in @mytasks %>
<div class="rowFormat">
<%= link_to_remote( "#{task.title}",
:update => "task_#{task.id}",
:url =>{:controller => ''front/tasks'', :action =>
''show'', :id => task} )%>
</div>
<div id="ta...