How to add a new link in Active scaffold rails 3
问题 I need to add a new link 'map' in my Taxis listing page, I am using active-scaffold and Rails 3.2.1. My current page looks like the below. I need to show a link 'map' similar to edit/delete/show in each record. In my database I have fields name, lat, lng. How can this be done. Please help. 回答1: You have to add your link in the configure part in your controller. I did it like this: controller Admin::TaxisController < Admin::ApplicationController active_scaffold :taxi do |config| config.action