Displaying 1 result from an estimated 1 matches for "changeprefix".
2012 Jan 04
1
render :update problem with IE 9
...format.js do
render :update do |page|
# originally we have a much more complicated logic here
# ...
page.replace_html ''list_of_numbers'', :partial => params[:kind]
# we even have this:
# page << "changePrefix();"
end
end
end
end
end
The view:
<%= link_to("odd", url_for(:controller => "main", :action => "change",
:kind => "odd"), :remote => true) %>
<%= link_to("even", url_for(:controller => &qu...