Displaying 1 result from an estimated 1 matches for "editcard".
Did you mean:
creditcard
2006 Mar 13
2
How to apply an effect to a link_to_remote :update without using evaluate_remote_response?
...;'New card'',
:url => { :action => ''new_card'', :id => @stack.id },
:complete => evaluate_remote_response %>
and then new_card returns JS:
new Insertion.Top(''cards'',
''<%= escape_javascript(render(:partial => "editcard", :locals => {
:editcard => @card }))%>'');
new Effect.SlideDown(''card<%= @card.id %>'');
but this just feels horribly, horribly wrong, because I can NOT be the
only person to ever need to do this. I know for sure that 37signals
had to do it, for that m...