Questions tagged [activescaffold]

A Ruby on Rails gem that lets you create user interfaces for CRUD (Create, Read, Update and Delete) operations.

It offers features including searching, pagination and layout control.

https://github.com/activescaffold/active_scaffold

140 questions
25
votes
1 answer

ActiveScaffold thread-safety

Multiple sources claim ActiveScaffold isn't thread safe: ActiveScaffold CanCan bridge documentation A Google Groups discussion From those I gather controller level configuration changes and authorization aren't thread-safe. Is it safe to consider…
user1454117
7
votes
3 answers

ActiveScaffold: How to create a drop-down select for polymorphic association?

I'm trying to create a drop-down select box for a polymorphic association with ActiveScaffold. I have: class Award belongs_to :sponsorship, :polymorphic => :true end class Organization has_many :awards, :as => :sponsorship end class…
5
votes
2 answers

How to override inherited_resources with the rails scaffold command

I am using the active_admin gem in my Rails 3 application, which has as a dependency inherited_resources. I am somewhat of a newb and would rather avoid the black box qualities of inherited_resources for my own controllers, however, when I run the…
lightyrs
  • 2,809
  • 2
  • 29
  • 32
5
votes
2 answers

Rails Admin vs Active Admin vs Typus vs Active Scaffold [2015]

which of the above would you recommend for a large e-commerce company? Although, most of the times, a simple CRUD interface suffices, there are at times, need for heavy customization. Also, speed is an important consideration. I found a lot of…
user2441151
  • 1,522
  • 3
  • 17
  • 26
4
votes
1 answer

activescaffold belongs_to relationship giving routing error

I am using the following: Rails 3.0.3 Vhochstein's Fork for Activescaffold rake 0.9.0 ruby 1.9.2 I have a model called component which has a belongs_to relationship with category. This was modelled using activescaffold and was working quite well. I…
4
votes
3 answers

How to create multiple records at once with ActiveScaffold in ROR

I am wanting to use ActiveScaffold to create assignment records for several students in a single step. The records will all contain identical data, with the exception of the student_id. I was able to override the default form and replace the…
Brent
  • 16,259
  • 12
  • 42
  • 42
4
votes
10 answers

How can I display simple tooltips on icons in html?

I am using ActiveScaffold in a Ruby on Rails app, and to save space in the table I have replaced the default "actions" text in the table (ie. "edit", "delete", "show") with icons using CSS. I have also added a couple of custom actions with…
Brent
  • 16,259
  • 12
  • 42
  • 42
4
votes
1 answer

Ruby On Rails html5 storage offline CRUD application with or without ActiveScaffold

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 to work offline e.g. the user can browse some of…
denysonique
  • 16,235
  • 6
  • 37
  • 40
4
votes
1 answer

How to Override Form Heading or Title in ActiveScaffold

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 "Create Widget"? It seems overkill to override the…
Mike Blyth
  • 4,158
  • 4
  • 30
  • 41
4
votes
2 answers

ActiveScaffold alike Admin for Spring Framework?

I need an admin interface for my spring-struts-hibernate application. an interface for creating, updating, and deleting objects. In Rails there's ActiveScaffold. Does something like an admin generator exist in the Java world? For Spring? Handcoding…
Jens
  • 177
  • 1
  • 1
  • 8
3
votes
1 answer

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,…
Amal Kumar S
  • 15,555
  • 19
  • 56
  • 88
3
votes
1 answer

How implement Search in ActiveScaffold Rails 3

My Normal search in the activescaffold list page is not working. I have ListLocations table which has fields id | list_id | wiki_location_id. I have following model relations class List < ActiveRecord::Base validates_presence_of…
Amal Kumar S
  • 15,555
  • 19
  • 56
  • 88
3
votes
3 answers

Ruby on Rails, ActiveScaffold and relatives in database

I have 2 tables: form, questions. Idea is very easy, every form have many question. Tables were maded form = | id | title | questions = | id | title | input | form_id | and how you can guess the form_id is key of form id. class FormsController <…
kubum
  • 469
  • 2
  • 13
3
votes
1 answer

Overriding show/edit/etc behaviour in ActiveScaffold

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. I do not wish to use ActiveScaffold for these actions (long…
Ben J
  • 5,811
  • 2
  • 28
  • 32
3
votes
1 answer

Rails 3.0 ORM agnostic admin plugin

Hey fellow Rail-ists, do know any equivalent of ActiveScaffold but being ORM agnostic or at least for Mongoid?
PanosJee
  • 3,866
  • 6
  • 36
  • 49
1
2 3
9 10