Tagged Questions
The scaffold tag has no wiki summary.
7
votes
4answers
6k views
Rails: Scaffold to automatically do one-to-many relationship
Not sure if I'm reading this right, but it seems like Scaffold will not do a one-to-many relationship in its entirety. For instance, if I create messages with scaffold and then I want comments on ...
6
votes
1answer
372 views
Define Scaffolding. (with respect to Dynamic Data and ASP.NET MVC)
There is a lot of information about how to implement and customize scaffolding with Dynamic Data and ASP.NET MVC. What exactly is the definition of scaffolding when used in this context?
3
votes
1answer
432 views
MvcScaffold not creating my related dropdowns correctly
MvcScaffold Version: 0.9.7
Okay, so MvcScaffold generates this code for me in my _CreateOrEdit.cshtml partial view:
<div class="editor-field">
@Html.DropDownListFor(model => ...
2
votes
1answer
72 views
Entity framework code generation tool
I have used Subsonic ORM in ASP.NET. It has Scaffold user control that generates web forms for list/insert/edit/delete etc.
I want to know is there anything like this in ASP.NET Entity Framework?
2
votes
2answers
53 views
Is it possible to scaffold multiple controllers in one command?
Using MvcScaffolding i can call these powershell commands to scaffold the Controllers and Views automagically.
scaffold Controller Products
scaffold Controller Reviews
Is it possible to combine the ...
2
votes
5answers
94 views
How to change routes in ruby on rails?
I just installed Ruby on Rails and created a scaffold called posts. RoR generated controllers and other required files for me.
I created a new method in posts_controller, but I can't access it. I ...
2
votes
1answer
80 views
Ruby on Rails: Get next item in model
Say I have simply ran rails g scaffold book name:string about:text On the 'show' view, how would I implement a button to go to the next item in the model.
I can't simply do @next = @book.id + 1 ...
2
votes
1answer
53 views
scaffold doesn't work well, the NEW method fails
I've just executed this:
rails g scaffold Photos name:string description:string
and added paperclip to that model:
rails g paperclip Photo image
and when i go to photos/new i get this:
...
2
votes
1answer
400 views
Rails 3 Inflection Problem
I'm having a problem with generating scaffold for a Regatta. When I run
rails g scaffold Regatta name:string start_date:datetime
I get a model named regattum and a controller called ...
2
votes
2answers
181 views
how to have the scaffold to generate another partial view template file
I'm trying to customize my scaffold generator, and I would like to have a new partial for the view in the same directory, in particular _item to be called both inside index and show. I can get all the ...
1
vote
2answers
44 views
adding extra attribute to a rails command
While trying to generate a new scaffold using - collection> rails generate scaffold Items name:string subcategory_id:integer users_id:integer, i missed out the 'users_id:integer' and ...
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
1answer
276 views
HEROKU scaffold.css isn't precompiled
I almost run my first ROR app on HEROKU but I've got problem with css. It's sth wrong with precompilation...
LOGS:
2011-10-31T19:23:15+00:00 app[web.1]: 2011-10-31T19:23:15+00:00
app[web.1]: ...
1
vote
3answers
70 views
A REAL quick, basic CSS layouter
Short story: I frequently have to work on many different, rather small, web pages.
Most of them are layouted with pure CSS.
My Problem:
My job is to work on the code itself, on the functionality of ...
1
vote
0answers
214 views
MVC 3 Scaffolding Error when running Scaffold Controller
I have installed MvcScaffolding without any issues but when I try to execute a scaffold request I get the error "DbContext.Task.t4" does not exist along with other files that are missing. I have a ...
1
vote
1answer
33 views
Ruby/Rails: where is the code to generate scaffolds
I was browsing the code at github.com/rails/rails, and I couldn't figure out where the code was to generate Rails scaffolds. Can anybody shed some light on this?
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
1answer
214 views
Display a domain transient property in scaffolded views
In my Grails 1.3.7 project I have a domain class like this:
class User {
String login
String password
String name
String passwordConfirmation
static constraints = {
login unique:true, ...
1
vote
1answer
455 views
Rails 3: scaffold destroy action redirect to show action
i created a simple scaffold, the problem is that when i try to delete a record click destroy rails redirect to the show action, this is the code of the link generated automatically when i generate the ...
1
vote
2answers
234 views
Rails scaffold without the css file?
Is there a way to generate a scaffold in rails 3.0 so that scaffold.css does NOT get created? Something at the command line I can enter to skip that step?
Thanks
1
vote
0answers
223 views
How Can I get the model properties using T4 template
I am using T4Scaffolding, and tried to create a custom Scaffold template. It's not asp.net project, not MVC.
My user class :
public class User
{
public int Id {get;set;}
public string ...
1
vote
1answer
479 views
MVC3 - Scaffold Template (Field Order)
When using the following dialog to add a view, is there anyway you can state in what order you want the fields created?
I tried [Column(Order=0)] ::: [Column(Order=12)], but no joy!
Thanks Paul
1
vote
2answers
441 views
RSpec Scaffold Controller, understanding the defaults being given
I'm working through an rspec tutorial (peepcode tutorial). I generated some scaffold and I was hoping someone can help explain how the describe could be re-written to read a bit clearer for newbie.
...
1
vote
2answers
382 views
Rails 3 scaffold and i18n
When scaffolding in Rails 3 the generator does this:
<% if @user.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@user.errors.count, "error") %> prohibited ...
1
vote
1answer
374 views
Grails scaffolding inheritance
I have some Domain classes inheriting from a base class. However when I generate the scaffolding, the view does not contain any elements of the base class.
The behaviour is the same regardless of ...
1
vote
1answer
126 views
Can you use dynamic finders or grouping tables via scaffold in Grails?
I'm working on a very, very quick and dirty application using almost entirely scaffold to do it. This is only for internal use, and it's just to replace a spreadsheet, so while I know that I shouldn't ...
1
vote
1answer
383 views
Can generate scaffold put the controller in a namespace?
I want to generate the scaffold in a Rails app, generating the model as usual but having the controller inside the admin namespace. Is it possible?
1
vote
2answers
126 views
Rails : Scaffold works for the first, but not for the second table
I am using aptana radrails
empty rail project :
scaffold Article titre:string body:text categorie_id:integer ordre:integer
Migrate -> it works fine
scaffold Categorie titre:string ordre:integer
It ...
1
vote
1answer
837 views
How do I create many-one relationships using Scaffold?
I'm new to Ruby on Rails, and I'm trying to create a bass guitar tutor in order to teach myself RoR (and bass guitar). The walkthroughs use Scaffold to create ActiveRecord classes, but they seem to ...
1
vote
3answers
2k views
Problem in Rails scaffold for DATE fields
When I use Rails scaffold, I can't access the page to edit fields. It shows me some kind of problem with all DATE fields. Here's the error:
can't convert Symbol into String
Extracted source (around ...
0
votes
0answers
18 views
ASP.NET DynamicData Validate Custom Image FieldTemplate
I've created a custom Image Field Template which works fine. I decided to create some kind of validation for image sizes so I've created a custom validation attribute. here is the code:
public class ...
0
votes
1answer
64 views
Ruby on rails controllers & views
I am new to Ruby on Rails and set myself a little project to get to grips with it. The project is simple just a basic jobs board where a person can post a job. I Also want to have users to have a ...
0
votes
0answers
32 views
Create a scaffold with foreign key, generate automatically select drop down list in the view
Every time I create a foreign key from a table A to a table B, I get a form.text_field that I need to fill the ID of the referring row from that table A to create a new object in table B.
That's ...
0
votes
2answers
48 views
Need to create a foreign key when creating a table on Rails?
i'm starting now on Rails, i looked in the forum, but i didn't find anything that could solve my problem.
Here it goes, I have a Category table, and it has only name for a column (there is no ...
0
votes
2answers
59 views
Create Rails views (only) after controllers and models are already created
I've obtained a project that have controllers (minimal code only) and models but the views are missing. Is there a way to generate the views only using scaffold or another tool?
0
votes
1answer
36 views
What's the proper way to set up date fields for a database?
So I have 3 fields in my HTML, lunchMonth, lunchDay and lunchYear
lunchMonth and lunchDay are Select tags with option tags for months and days remaining in the year. lunchYear is set to 2011.
I've ...
0
votes
4answers
41 views
How can I create references to objects in Ruby in ActiveRecords?
I am a Java developer I've been learning Rails for the past few days. I have a JEE application (Uses Hibernate for ORM) that I am trying to port to Rails. I have used scaffolding to generate a few of ...
0
votes
1answer
419 views
Rails 3.1 Scaffold undefined method `model_name' for nil:NilClass
Help me StackOveflow, you're my only hope.
I'm getting the following error, and its driving me crazy.
NoMethodError in Players#new
Showing ...
0
votes
3answers
210 views
Beginner with Rails 3.1 and “static” pages
I just started deploying a Rails website. In fact, I started programming on Rails 2 days ago.
I've created a new project, added some gems, etc. Everything is working properly, and I have some basic ...
0
votes
2answers
67 views
script/generate scaffold against specific database?
I'm wondering if there is a way to generate scaffolding against a specific database. I am using two databases in my app and would like to generate scaffolding for both, separately. This is assuming ...
0
votes
5answers
114 views
ruby on rails routes
I am having a hard time understanding routes in rails 3. I created two scaffolds: Users and magazines. The users are able to login, but I am unable to link to the magazine page. I know it has to do ...
0
votes
0answers
216 views
can't get my scaffold up
I'm switching from rails2 to rails 3 with nice results until now...
rails new application -d mysql
cd application
application$ rails g scaffold questiontf questionconcept:string question:text ...
0
votes
1answer
231 views
rails g scaffold series name:string - is this a naming convention error or something else
On my blog I'm have posts that belong to a series. I've tried to scaffold series but there are some problems with routes.
The pluralization engine doesn't get it right so I had to manually change ...
0
votes
1answer
87 views
How do you create scaffold in Rails without XML (HTML only)?
The default scaffold command creates code like the following:
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @model_name}
end
My application is ...
0
votes
1answer
49 views
Copy additional file with default rails scaffold
I customized my scaffold files (view and controller). But by default it copies only the standard files like:
_form.html.erb
edit.html.erb
index.html.erb
new.html.erb
show.html.erb
but I've to copy ...
0
votes
0answers
251 views
Rails 3 scaffold edit page make entire html image disappear
i am new to rails, and sorry for my broken English.
i generate a scaffold named photos, everything is fine but when i enter edit page, seem all my background image, html image disappear only in this ...
0
votes
2answers
85 views
Rails listing problem
I generated a scaffold and I created a casual application. I want to list the scaffold items on a sidebar, everywhere on the application (inside application.html.erb).
My left column, in ...
0
votes
1answer
91 views
Displaying Nested Scaffolds on Index
I'm trying to display something like this on posts/index.html.erb
Post #1
Comment #1 for Post #1
Comment #2
Post #2
Comment #1 for Post #2
etc.
It works fine if I go to /posts/1/comments/, ...
0
votes
1answer
139 views
Grails newbie - Scaffold question - Replace unique id with readable value(s)?
I'm creating a web application with grails, and I'm working on the CRUD prototype using Scaffold. Out of the box, the scaffold will use the unique id (which makes sense) for foreign key values, and ...
0
votes
1answer
117 views
Ruby on Rails Generating Views
Is there a way to generate the views separately using the rails generate command? I would also be willing to install a gem to accomplish that task f one exists. Basically the scaffolding command gives ...