Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
900 views

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 ...
4
votes
1answer
534 views

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 ...
3
votes
1answer
588 views

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 ...
3
votes
1answer
1k views

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?
3
votes
3answers
2k views

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 ...
2
votes
1answer
236 views

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 ...
2
votes
3answers
168 views

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 ...
2
votes
1answer
325 views

Could not find generator active_scaffold_setup

Following this tutorial for setting up ActiveScaffold with Rails3: http://vhochstein.wordpress.com/2010/08/28/setupactivescaffoldrails3/#comment-4 and, when I run the following command: rails g ...
2
votes
1answer
1k views

rails 3 is printing html tags to screen instead of rendering them

I'm using vhochstein's fork of active_scaffold, which runs quite nicely on rails 3, except for a few small bugs - http://github.com/vhochstein/active_scaffold. In rails 2.3, the following code ...
2
votes
4answers
858 views

uninitialized constant Active Scaffold rails 2.3.5

I update my rails application 2.0.2 to 2.3.5. I use active scaffold for the administration part. I change nothing in my code but a problem is coming with the update. I have a controller ...
2
votes
3answers
770 views

How do I tell ActiveScaffold to always show the search form in a list view?

The ActiveScaffold list view has a search form that is loaded via ajax when a user click the search link. I'd prefer to have the form show by default when a user opens a list page. I've figured out a ...
2
votes
9answers
2k views

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 ...
2
votes
1answer
892 views

How do you change the displayed order of ActiveScaffold “actions”?

I am using ActiveScaffold in a Ruby on Rails app, and 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 ...
1
vote
1answer
45 views

Active Scaffold: config.link.inline = false is not working

Using Rails 3.1.0, with Active Scaffold (from the git repo). My controllers have code that look like this: active_scaffold :template do |config| config.create.link.inline = false config.actions ...
1
vote
1answer
44 views

filter on relation, activescaffold

I have this code: class ArticlesController < ApplicationController active_scaffold :articles do |config| config.label = "Manage my articles" config.actions.exclude :show form_cols = ...
1
vote
0answers
160 views

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 ...
1
vote
2answers
151 views

Activescaffold Rails 3 (vhochstein) STI localization

Im trying to localize the labels for ActiveScaffold STI children. In development it works fine with just this: es: activerecord: models: rule: "Regla" concrete_rule: "Regla puntual" ...
1
vote
1answer
120 views

“Create Another XXX” button not working in ActiveScaffold

Update#1 Surprisingly if in Firebug, I change the generated <input> HTML to <a>, it works as expected. But to make this workaround permanent, I will have to change ActiveScaffold's code. ...
1
vote
1answer
312 views

How to list active records using Active scaffold with association in rails 2.3.8?

I want to list all the records from DB, which are all active(true) in my index page. I'm using active scaffold plugin with rails 2.3.8. any suggestion how to add active condition in my controller? ...
1
vote
2answers
460 views

Does ActiveScaffold work with Rails 3?

Does ActiveScaffold work with Rails 3?
1
vote
1answer
185 views

ActiveScaffold — When inserting a new record, how to enable entry fields for a column/model to which the being created model “belongs_to”

I have the following database schema: create_table "addresses", :force => true do |t| t.string "road" t.string "city" t.datetime "created_at" t.datetime "updated_at" ...
1
vote
2answers
459 views

friendly_id and ActiveScaffold conflict

I have friendly_id and ActiveScaffold installed for my Rails application. Because not all of my models have unique name fields I have to use the Slugged Model to make it work. friendly_id does the ...
1
vote
2answers
303 views

Ruby on Rails ActiveScaffold: Showing {{model}} instead of model name?

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}}" or ...
1
vote
1answer
65 views

how to check status new in activescaffold

active_scaffold :formats do |config| format_order = Format.find(:all, :select => :format_order, :order => :format_order).collect(&:format_order) format_order << ...
1
vote
2answers
579 views

Routing problem in ActiveScaffold with Rails 3.0

I'm trying out ActiveScaffold with Rails 3.0, still trying to get it to work at all. I'm getting an error No route matches {:active_scaffold=>true, :action=>"show_search", ...
1
vote
2answers
356 views

RoR: Listing of subrecords

Schema: persons (id, name, birthyear, gender) pets (id, person_id, name, leg_count) plants (id, person_id, kind, qty) I would like to make a read-only report about these things grouped by persons. ...
1
vote
1answer
157 views

Is there an ActiveScaffold equivalent for Django?

A while ago I created a frontend for a database using RoR and ActiveScaffold. ActiveScaffold let me easily create lots of the features I needed: Read Only Access, Sexy Interface, Sorting, Advanced ...
1
vote
1answer
155 views

ActiveScaffold keeps rounding my numbers

I need to display & edit highly precise decimal numbers - latitude and longitude. ActiveScaffold keep rounding my values to precision 6 scale 3, can I change that to precision 11 scale 8 ...
1
vote
1answer
385 views

Is it possible to implement has_many, :through with ActiveScaffold?

Consider the following models: class Artist < ActiveRecord::Base has_many :artist_events has_many :events, :through => :artist_events end class Event < ActiveRecord::Base has_many ...
1
vote
1answer
374 views

ActiveScaffold on Heroku's read-only file system?

ActiveScaffold apparently creates public/blank.html every time the server starts, even if that file already exists (so adding it to version control doesn't help). This is causing my application to ...
1
vote
1answer
339 views

activescaffold controller missing activescaffold work around

I have a 3yr old application that has some controllers with some very unrestful actions. I'm trying to implement a new resource that has relationships to some of the older ones, but I want to use ...
1
vote
2answers
2k views

How to create a nifty_scaffold without worrying with the migrations?

I need to use the nifty_scaffold to generate all the views and controller for my model, but I already have the model, the migration and the table in database, so I don't need it to generate the ...
1
vote
1answer
470 views

How to create custom dropdowns using the ActiveScaffold Rails plugin (http://github.com/activescaffold)?

I have several models with fields that are integers. I also have hashes that associate integers with strings (1 => Blue, 2 => Red, that sort of thing). How do you turn these into dropdown lists in ...
1
vote
2answers
850 views

ActiveScaffold - changing default name of associated object

My model "combobox" has_many "comboboxselects", and "comboboxselects" belongs_to "combobox". Activescaffold of "comboboxes" displays data in comboboxselects-column like ...
1
vote
3answers
866 views

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 ...
1
vote
2answers
1k views

Can ActiveScaffold be configured to show the search form before displaying a list?

When I ask ActiveScaffold to show me a very long list (for example the list of products sold), it runs the database query to get the first page of data and it displays it. If the list has a few ...
1
vote
2answers
1k views

Composite keys with ActiveScaffold in Ruby On Rails

I am developing RoR application that works with legacy database and uses ActiveScaffold plugin for fancy CRUD interface. However one of the tables of my legacy db has composite primary key. I tried ...
0
votes
1answer
39 views

How can I specify available ActiveScaffold actions on a per-record basis?

I have a very simple admin controller in my Rails 2 app that displays all the records for a model read-only: class Admin::InspectionsController < ApplicationController active_scaffold ...
0
votes
1answer
41 views

How to define a Form Override for a Chained Form Field in Active Scaffold

Below example is taken from this documentation page: https://github.com/activescaffold/active_scaffold/wiki/Chaining-Form-Fields [Example start] You can set an array of columns to update multiple ...
0
votes
1answer
17 views

How to format big int values in Activescaffold plugin rails 3

I am using rails 3 activesacaffold plugin for my admin pannel. I have a table which has big int values. When I list the values its showing as '62,175,049,070'. How can I format this to show like ...
0
votes
0answers
30 views

activescaffold: no response when clicking search, create, edit, show

I'm using activescaffold to display my models, model list can be displayed correctly, but the problem is: there is no response when I click search, create, edit, show. But "delete" works well. Does ...
0
votes
0answers
18 views

Rails 2.1.2 ActiveScaffold 1.1.1, strange behavior with custom params and links

im going to give you an example to see if someone could help me figure it out... i got 2 models, Reservation and Log.. Log acts like an observer for the Reservation model, so when a Reservation its ...
0
votes
3answers
86 views

active scaffold: how can I set the confirm text on a delete action?

So, I'm using activescaffold and have the following code: config.actions = [:create, :delete, :list] config.delete.link.confirm "Are you sure you want to delete this tag?" which according to what ...
0
votes
0answers
88 views

ActiveScaffold issues with Devise? getting undefined method error

I seem to be having trouble getting ActiveScaffold and Devise to play nicely together. I was able to get devise working properly, and scaffolding up for most of my models. However, my User model is ...
0
votes
2answers
121 views

Why does Rails render RJS templates within a layout?

I need to do this for a controller which uses the active_scaffold gem. We have a controller that looked something like this: class Admin::UsersController < ApplicationController layout 'admin' ...
0
votes
0answers
100 views

How to fix “undefined method `active_scaffold_joins' for #<Admin::UsersController:0x5755560>”

I used Active scaffold in Rails 2.3.8. I need to export user information which has user table fields such as name, email and phone. I used active_scaffold_export plugin. I got an error when clicking ...
0
votes
1answer
82 views

How to Make CSV Format Report of User Information using Active Scaffold in Rails 2.3.8

I am New Ruby on Rails. I want to export CSV File for User Information which is having user controller. Ruby version: 1.8.7 Rails version: 2.3.8 Example: I have user controller: class ...
0
votes
1answer
80 views

as_paperclip_bridge initialization error in rails3

I'm trying to use both of PaperClip and ActiveScaffold with help of as_paperclip_bridge in a rails3.0.5 project. However, following initialization error is occurred when I launch the project. => ...
0
votes
0answers
187 views

How to add association table field in active scaffold

I am new Ruby on Rails Developer. I want to list all the records from DB, which are all active(true) and also show active field values in my index page of AccountsController. Need to create custom ...
0
votes
0answers
138 views

ActiveScaffold shows Request Failed (code 500, Internal Error)

I'm using the latest https://github.com/activescaffold/active_scaffold in a Rails 2.3.10 project. When I do a create or update action in my view, active_scaffold shows "Request Failed (code 500, ...

1 2