Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
470 views

Multiple user models with Ruby On Rails and devise to have seperate registration routes but one common login route

First, I've searched intensely with Google and Yahoo and I've found several replies on topics like mine, but they all don't really cover what I need to know. I've got several user models in my app, ...
2
votes
1answer
663 views

Rails 3 Nested Model Form, 2 levels deep using accepts_nested_attributes_for

My nested model form is working great on the first level deep. But I was under the impression that you could go many levels deep using accepts_nested_attributes_for. But when I try the code below, ...
1
vote
1answer
52 views

Rails Line Items Help

i'm trying to figure out the best way to do shopping cart for bicycle components. the problem that i'm encountering is that i can't just add all the components to the same model because they each have ...
1
vote
1answer
242 views

getJson doesn't call JsonResult for models rendered with PartialView

So I have this application in ASP MVC 3. My database has two tables: Comenzi and DetaliiComenzi with one-to-many relationship (and Link-to-Sql) - in my application I want my users to buy some products ...
1
vote
2answers
121 views

How do I use a single form in a view for a multiple-models in Rails 3?

I have a single form. That form is currently in the View for the model Message. Sometimes, I want to be able to associate a Contact (first name, last name) with that particular Message. Contact is ...
1
vote
4answers
286 views

How do I create multiple entries in one view in C# ASP.NET MVC?

I have a Company model and an Employee model and I want to create a Company and then create multiple employees for the company in one view. How should I do this in the view? And what should I do in ...
1
vote
1answer
444 views

CakePHP: saveAll with hasOne plus a HABTM

I have two models set up that I need to save inside one form. When the user uses the "/deliveries/add/" form, I need it to save a new delivery, and also save a new license that is attached to that ...
1
vote
3answers
1k views

dynamic check_box using field_for in rails

I have a many-to-many relationship with a link box, and I want to pull those models together into one form so I can update from the same page. I'm really struggling with getting the check_box to even ...
1
vote
3answers
847 views

codeigniter best practice - multiple models

Hi Just a quick question about best practice in MVC development. Let's say that I've got two controllers (cont1, cont2), each of which uses a separate model, model1 & model2. all files are ...
1
vote
2answers
1k views

Rails form with three models and namespace

Banging my head against this one for a long time. On Rails 2.3.2, Ruby 1.9.1. Trying to use one form to create three objects that have these relations: class Person has_one :goat end class Goat ...
1
vote
2answers
806 views

RESTful way to do degradable Multiple Models in a Form in Rails

So far, I've not been able to find a solution that is able to allow a form to interact with two models that have a one-to-many relationship. Say for example, a customer has many items. Currently, ...
0
votes
0answers
31 views

Rails like dislike system for multiple models

Hi guys I have an app where Users can like Games, Videos, Books, and Albums. Could you shed some light into what is the best way to go about creating a like/dislike system for this? Here are the ...
0
votes
1answer
29 views

jQueryUI Sortable across multiple models

Does anyone know how to sort items across multiple models? I am building a CMS and I want the user to be able to sort content, however there are many different models for the content types. eg. ...
0
votes
2answers
34 views

Rails Multiple Entries in a form

I'll try and explain this as much and as easily as possible. I have a Rails form, and 3 models. Models: DemoModule, SalesDemo, and SalesDemoModule What I want to do in my view/form is create a new ...
0
votes
1answer
98 views

Multiple ViewModels/Single View with MVC Contrib

First of all, this is not a new question. My question is actually a follow up question to one of the answers provided by gWiz. The link to his post/answer is here: Multiple models sent to a single ...
0
votes
0answers
28 views

sort and paginate a view constructed from multiple models

I have three different data sources (let's say newspaper articles, rss feeds, books) and i need to create a mashup view that paginates all three item types sorted by publication date. So far: i have ...
0
votes
0answers
8 views

How do I use one UITableView with multiple models?

I have a UISegmentedControl that controls how a table is displayed. The way the UITableView looks and the data it has depends on the selectedSegmentIndex. What is the most efficient way to call the ...
0
votes
2answers
119 views

Rails multiple models (nested) form not showing the child model after validation error

I used multiple model from in rails, it fails to work properly in a sinario <%= form_for [@listing] do |f| %> <%= f.fields_for :photos do |ph| %> <%= ph.file_field :data ...
0
votes
3answers
1k views

ActiveRecord::AssociationTypeMismatch when attempting to save nested attributes in Rails

I have read through a lot of pages on has_one relationships and nested attributes but haven't been successful in making this work. Any help would be fantastic. Each User has_one Network. I'm trying ...
0
votes
1answer
98 views

Multiple non-related models in one Rails form

I am building a blog-style application in Rails 3 where multiple users are able to post some news. After the login (which is realized with "Authlogic") the user values are stored in a own model called ...
0
votes
1answer
331 views

Django / Sphinx: How to query on multiple models?

I want to be able to query different models at once and get the aggregate result of the full text search. i.e. books and authors as a single list, sorted by relevance for example. As I understand, ...
0
votes
1answer
154 views

How do I dynamically build a list of objects in a CREATE view?

I have an Employee model that has a Name and Company I want to be able to build multiple Employees in one CREATE view. I figured I need to create an IList<Employee> and do something like: ...
0
votes
2answers
128 views

Need help modifying multiple models example from advanced rails recipes book

I'm developing a simple rails app for my own use for learning purposes and I'm trying to handle 2 models in 1 form. I've followed the example in chapter 13 of Advanced Rails Recipes and have got it ...