1
vote
1answer
29 views
activescaffold controller missing activescaffold work around
Hi All,
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 …
1
vote
1answer
135 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 …
0
votes
1answer
52 views
Chaining a calendar_date_select to a select in ActoveScaffold
I am trying to chain a calendaer_date_select to a select field, so the select list is filtered by the choosen date. I have followed the instructions as described here
I have in the activescaffold …
0
votes
1answer
32 views
In ActiveScaffold a Form Override breaks Field Search
In a Rails app I have Sales and Salespeople:
class Sale < ActiveRecord::Base
belongs_to :salesperson
end
class Salesperson < ActiveRecord::Base
has_many :sales
end
I have an …
0
votes
1answer
14 views
Displaying links on columns mapped to custom attributes
Say I have Course that has_many Students. I also have def top_student in the Course class. I now have an active_scaffold on top of Course, but if I add top_student as a column it show shows #, but …
0
votes
0answers
47 views
Problem with RESTful resource and ActiveScaffold
Hello everyone,
I am trying to use a RESTful controller for user inside a namespace
using AS and one outside for registration and so on. When i try to
visit the namespaced url I get Unknown action. …
0
votes
1answer
43 views
set instance variables with activescaffold
Hi All,
I've recently added activescaffold to an existing rails project, and the problem I'm having is that the variable names that activescaffold is using are not the same as the ones I already …
0
votes
2answers
74 views
activescaffold @records manipulation in a before filter
Hi All,
I would like to call
@records.collect{|r| r.set_some_virtual_attribute(@context)}
before rendering an activescaffold index view, but if I do this :
controller FooController < …
0
votes
1answer
115 views
How to configure calendar from ActiveScaffold?
I have configured calendar_date_select to work with ActiveScaffold. But I am struggling to workout, how I can configure the date format?
What I have done so far is install the gem and configured …
0
votes
2answers
81 views
How do I remove the Show/Hide links on a subgroup in ActiveScaffold?
With ActiveScaffold I have a group on my create form:
config.create.columns.add_subgroup "Customer" do |customer_group|
customer_group.add :customer_surname, :customer_postcode
end
This has a …
0
votes
1answer
84 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 …
0
votes
1answer
97 views
ActiveScaffold - Specifying Conditions in Embedded Scaffold
Hi,
I have a Project model and a TaskType model.
Association between the two occurs through a ProjectTaskType model
(backed by a link/join table in the DB with foreign keys to both Projects and
…
0
votes
0answers
55 views
Sortable scaffolding in Rails
I have some problems with plugin activescaffold_sortable. The problem is that I can't reorder nested rows, but when I reorder rows without nesting it works well.
The error is
500 Internal Server …
1
vote
2answers
222 views
ActiveScaffold and associations
My model "combobox" has_many "comboboxselects", and "comboboxselects" belongs_to "combobox". Activescaffold of "comboboxes" displays data in comboboxselects-column like …
0
votes
3answers
280 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 …
