Tagged Questions
Scaffolding is a meta-programming method of building database-backend software applications.
49
votes
5answers
11k views
16
votes
4answers
16k views
Backend Administration in rails
I'd like to build a real quick and dirty administrative backend for a rails app I have been attached to at the last minute. I've looked at activescaffold and streamlined and think they are both very ...
10
votes
2answers
2k views
Quickest way to get Scaffold code created with C#/ASP.NET
At the start of any project, once you've got your object model there then comes a period of tedium as you crank out the skeleton code required.
Are there any tools that will help me with this task ...
9
votes
17answers
10k views
Is there a CRUD generator utility in Java(any framework) like Scaffolding in Rails?
Is there a CRUD generator utility in Java like Scaffolding in Rails? Can be in any framework or even plain servlets. Must generate controllers + views in jsp, not just DAO code...
8
votes
2answers
928 views
Where can I find the default Object.cshtml Editor template?
I need to modify the default editor template for scaffolding but I havent found the Object.cshtml template, where can I find the default razor Object.cshtml Editor template?
7
votes
3answers
306 views
Is there any PHP framework's scaffolding that can generate migration like Ruby on Rails?
In rails, when generating model, migration is created also.
I'm wondering any PHP framework can do it also?
I'm trying Yii framework now, but seems like I need to generate the migration manually ...
7
votes
3answers
15k views
Ruby on rails link_to syntax
After following a tutorial Ive found. Im now redoing it again, without the scaffolding part, to learn it better.
However, editing my \app\views\home\index.html.erb to contain:
<h1>Rails test ...
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?
6
votes
4answers
6k views
Nicer alternative to the default Rails scaffolding stylesheet: scaffold.css?
I'm looking for a more attractive alternative to the standard scaffold.css?
Has anyone come across a stylesheet that was specifically designed as a more attractive, less sparse alternative to the ...
6
votes
3answers
2k views
Scaffolding ActiveRecord: two columns of the same data type
Another basic Rails question:
I have a database table that needs to contain references to exactly two different records of a specific data type.
Hypothetical example: I'm making a video game ...
6
votes
2answers
485 views
Initial skeleton for Firefox extensions?
I always seem to have a hard time starting a new Firefox extension. Can anyone recommend a good extension skeleton, scaffold, or code generator? Ideally one that follows all the best practices for ...
5
votes
2answers
454 views
How to generate service and repository layers for MVC3
I recently completed an MVC3 project for a client using a Repository pattern implemented using a micro ORM, and with a service layer for my business logic. IMHO the application works well and the ...
5
votes
4answers
237 views
Why do RoR professionals NOT use Scaffolding?
I read sometimes from people that seem to be working with rails since longer, that one important lesson they learnt would be "Don't use scaffolding". Also on irc I read commonly hints from this ...
5
votes
1answer
567 views
MvcScaffolding: How to support many-to-many relationships between entities
I started using MVC 3 and used MvcScaffolding to scaffold these models:
namespace Conference.Models
{
/*
* Speaker can have many session
* And session can have many speakers
*/
...
5
votes
3answers
895 views
Where can I find documentation on MvcScaffold package listed on nuPack?
I'm trying to find documentation on how to use the MvcScaffold package on nuPack, but I can't find anything anywhere.
I know I have basic intellisense support in the Package Management Console, but I ...
5
votes
10answers
6k views
Scaffolding for PHP
Is there any thing in PHP to create basic scaffold, like in Rails?
EDIT: I need something to prototype quickly..
5
votes
4answers
1k views
What is scaffolding? Is it a term for a particular platform?
Scaffolding, what is it? Is it a Rails-only thing?
4
votes
1answer
97 views
Cabal to setup a new Haskell project?
Is it possible to (ab)use Cabal to have it create a generic Haskell project with a simple command, similar to what you can do in the Scala world with Sbt or Maven?
e.g.
> cabal create ...
4
votes
2answers
318 views
How can I provide my own ICustomTypeDescriptor in ASP.NET MVC?
I'm working on a small library for for ASP.NET MVC 3 that should offer better reusability of model metadata and easy mapping from data entities from / to custom viewmodels. For this I need to be able ...
4
votes
2answers
538 views
Is there any adequate scaffolding for Django? (A la Ruby on Rails)
Is there any adequate scaffolding for Django?
It may be in the newly released 1.3 version, but I haven't found it yet.
4
votes
1answer
497 views
How to get MvcScaffold to work with external models?
Steve Sanderson has a great blog that goes into the details of MvcScaffolding. See it here http://blog.stevensanderson.com/2011/01/13/mvcscaffolding-standard-usage/
He also has a great video on ...
4
votes
3answers
1k views
How to avoid Rails scaffold to place model into namespace
Rails 3 scaffold generator places model classes inside namespace.
Example:
rails generate scaffold admin/portfolio
But I want only controllers and views to be placed inside admin namespace.
How ...
4
votes
3answers
128 views
What is the point of scaffolding?
I don't understand the significance of something like rails, codeigniter, etc. and scaffolding. From what I read, and maybe it's just wrong, scaffolding isn't used in the production environment. I ...
4
votes
1answer
318 views
ASP.NET MVC: Accessing ModelMetadata for items in a collection
I'm trying to write an auto-scaffolder for Index views. I'd like to be able to pass in a collection of models or view-models (e.g., IEnumerable<MyViewModel>) and get back an HTML table that uses ...
4
votes
1answer
5k views
Templating Html.DisplayFor() in ASP.NET MVC 2
It appears that if you just use Html.DisplayFor(model => model) with no templates for a Details view, the resulting markup will look something like this:
<div class="display-label">first ...
4
votes
3answers
332 views
Is it wrong to not implement all REST actions in Rails controller?
Let's say I have a SessionsController, which controls user login and logout, but the only actions I really need are new (for displaying login form), create (for authentication and login) and destroy ...
3
votes
2answers
411 views
ASP.NET MVC 3 and NHibernate Scaffolding
I found this article [http://blog.stevensanderson.com/2011/01/13/scaffold-your-aspnet-mvc-3-project-with-the-mvcscaffolding-package/], which explains how to use MVC Scaffolding with one-to-many ...
3
votes
1answer
255 views
Once again LINQ to SQL or Entity Framework for new MVC 3 project
first of all, my background is: pretty large database (~100 tables with ~10-20 columns each) on MS SQL Server and it's always gonna be SQL Server and database first.
i have some experience in ...
3
votes
2answers
939 views
Working with enums in ASP.NET MVC 3
Is there a clever way to get the MVC scaffolding to render a dropdown or listbox for model properties that are enum values?
Example:
public class MyModel
{
public Color MyColor { get; set; }
...
3
votes
1answer
609 views
ASP.NET MVC3 Code First Scaffolding | List view doesn't honor the [Display(Name=“…”)] attribute
I tried decorating the POCO class with [Display(Name="First Name")] Like follows...
public int Id { get; set; }
[Display(Name = "First Name")]
public string FirstName { get; set; }
...
3
votes
1answer
976 views
how to delete model and scaffolding in RoR
How can i delete an existing model and scaffolding in ruby on rails 3?
can i just nuke the folders?
thanks
3
votes
2answers
319 views
rollback generated controller/model in RoR
I created, using the scaffolding, a model and controller files.
Later I discovered it would be a good idea to create the tables in the DB first...
My question, How can I role back the generated files ...
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 => ...
3
votes
1answer
703 views
Scaffolding controllers in ASP.NET MVC
What options do we have for scaffolding controllers in ASP.NET MVC (v2 and v3 RC)? I know about the code templates folder and T4 but it only allows creating one .tt file and thus, replacing the ...
3
votes
2answers
281 views
Help with Delphi DFM generation based on Database Tables (Scaffolding?)
I'm new to delphi and I'm looking up on ways to learn more about delphi underlying technology plus make something useful here in my job in the process, also if anyone has any tip or see anyway i can ...
3
votes
1answer
1k views
Struggling with SelectList in ASP.NET MVC 2
I have a model that looks something like this:
public class SampleModel
{
public static SampleModel Create()
{
return new SampleModel
{
Boolean = true,
...
3
votes
1answer
205 views
how to create scaffolding for model that is already in place
I have a model already in place. I just want some admin screens created for it which will do the add/edit/update/delete functionality.
My model name is User and it has properties user_id, ...
3
votes
3answers
2k views
How can you configure Rails to use blueprint-css instead of the default scaffolding css?
What changes do you need to make to a Rails project to configure blueprintcss as the default stylesheet to be used when you generate scaffolding instead of scaffold.css?
2
votes
3answers
147 views
Performing create operations on two models via one action
I have two models : Category and Picture which refers to two tables, Categories and Pictures respectively. The Category model has a navigation property to Picture model.
Now, I created a controller ...
2
votes
1answer
126 views
Why doesnt <ScaffoldColumn(False)> work?
Its my understanding that by adding the ScaffoldColumn(false) annotation to an property in a class, that property will not added to the view when doing Add View. However even though i have added ...
2
votes
2answers
57 views
Rails: Handling a scaffolding, such as “Sheep,” that has the same plural and singular form
I'm wanting to create a model called CommunicationMeans (or, alternatively, MeansOfCommunication). However, this is both the singular and plural form of this term. I ran this:
$ rails g scaffold ...
2
votes
1answer
269 views
MVC 3 - Entity Framework - Scaffolding - Validation issue
Im developing an MVC 3 application with Entity Framework and Im tring to use Scaffolding.
To solve "Type not mappedd issue" I've done the procedure found here. Everything now works fine.
Default ...
2
votes
2answers
465 views
What is Dynamic Scaffolding in CakePHP
When I create my application through the CakePHP Console, it asks me "Would you like to use dynamic scaffolding?" but I am not sure what it means actually. I am answering No but it stills asks the ...
2
votes
2answers
376 views
Scaffolding ManyToMany associations with Netbeans and JSF
I'm developing a JEE6 JSF application using NetBeans and its RAD development features. I want to use scaffolding to save time updating controllers and views from Models. The OneToMany associations are ...
2
votes
4answers
1k views
Missing Scaffolding Options in ASP.NET MVC 3 Add Controller Dialog
I have downloaded and installed the release version of ASP.NET MVC 3 (File version: 1.13.113.0), Created a new project of type ASP.NET MVC 3 web application.
When I right click on Controllers ...
2
votes
1answer
244 views
WPF scaffolding?
I'm trying to do some scaffolding around on WPF (and Silverlight later). Is there anything useful in the System.XAML namespace, or should I just use Linq2XML or something...?
By far System.XAML ...
2
votes
6answers
607 views
MvcScaffolding - Does it support Model-First?
I've toyed around with the MvcScaffolding project - very nice BTW; however, does anyone know if it supports Model First design scenarios (e.g. EF4 Data Model -> Generate from Database)?
If it does ...
2
votes
1answer
497 views
Create scaffold by skipping the model
I have rails 2.3 and ruby 1.8.7
I want to create only a controller and view files for it. Is there any command in rails2.3 that will help me in doing this. I know this can be done in rails 3, but is ...
2
votes
3answers
229 views
Spring/Hibernate Entity Management Web Interface/UI
We have a server application that exposes a certain model, and set of services built on that model, to a particular client UI through a number of protocols. This is the kind of server application ...
2
votes
1answer
228 views
Scaffolding problem in my MVC asp.net dynamic data web app
I am working on an asp.net MVC application. I have the following code in my global.asax file for dynamic data implementation
Code snippet 1:
model.RegisterContext(typeof(MyCustomEntities), new ...