Hello,
I've a problem with AS rails 3.0 compatible version.
My AS table is loading fine, but when i attend to do any ajax action (search, click on pagination etc.) the request is sent, but the server answer the request by sending back an entire view (not only the partial), then nothing is rendered... (i used firebug to find out).
Here is me gem list :
gem 'active_scaffold_export_vho'
gem 'render_component_vho'
Then in my AS layout i use :
<html>
...
<%= stylesheet_link_tag 'administration.css'%>
<%= csrf_meta_tag %>
<%= active_scaffold_includes %>
...
...
</html>
and i ve a sample AS controller where i do :
class Admin::VideoController < ApplicationController
layout "activescaffold"
active_scaffold :videos do |config|
end
end
Any help will be greatly appreciated !
thank you,
Regards.