I am currently building a web application using Ruby On Rails with ActiveScaffold. And I would like to know whether there is any plugin/library which would make possible to enable my Rails application
I am trying to deploy an app to Heroku for the first time. The app uses AS(vhochstein fork). The problem is that I am getting this error:
I\'m trying to get my Rails3 application running on Heroku,the first time I\'ve tried to use Heroku. The app uses the ActiveScaffold plugin for Rails3. It works in production mode locally, and Heroku
I have friendly_id and ActiveScaffold installed for my Rails application. Because not all of my models have unique name fields I have to开发者_StackOverflow社区 use the Slugged Model to make it work.
Is there an easy way to override the title on an ActiveScaffold page? I know I can customize the name of the model part, but what if I want to say \"Let\'s make a new widget, shall we?\" instead of \"
I\'m using ActiveScaffold with Ruby on Rails and I\'m loving it, however there is one weird thing. Whenever I hit \"Edit\" or \"Create New\" in my webapp\'s ActiveScaffold, it says \"Create {{model}}\
I am using namespace routes to create an admin section. The problem is that the moment I moved un-namespaced and working controllers into the /admin namespace, I suddenly get an undefined methods err
active_scaffold :formats do |config| format_order = Format.find(:all, :select => :format_order, :order => :format_order).collect(&:format_order)
Version 2.3.4 Let\'s say, I have an items table with some fields, for example: id, name, something, created_at, updated_at, is_dirty. I\'m using active scaffold to display a HTML table from it.
I currently have a generic list that is generated by ActiveScaffold. At the end of each row in the list, ActiveScaffold adds the standard CRUD links - Show, Edit, Delete - for each record.