A has_many :through association set up a many-to-many connection with another model.

learn more… | top users | synonyms

0
votes
0answers
30 views

cakephp 1.3 HABTM relation not recognizing useTable

I've created a a HABTM relationship in CakePHP 1.3 within a plugin. The plugins name is Products, the two models are "Asset" and "AssetCategory". Essentially we have Products (Assets) and those ...
0
votes
1answer
34 views

CakePhp 2.x HABTM SaveAll

I'm trying for 3 days to make it work, already apply all i have seen on stack/forums/google. A subscribers habtm subrcriberlist and a subscriberslist can belongs to many subscribers. /* Subscriber ...
0
votes
1answer
39 views

HABTM or HM/HMT Self-Join in Rails

I have a Users model and want users to be able to Subscribe to another User to get notifications when they post things. This is sort of a has_many self join and a many_to_many self join. I need to ...
1
vote
1answer
22 views

How to query for a unfulfilled habtm relation?

I have Posts and Tags (Active Record using the Mysql adapter) in a HABTM relation. How should I query for Posts that have no Tags?
1
vote
2answers
44 views

Why can't I add an object to the relationship?

Just learning rails... I have the following models: class TimeSlot < ActiveRecord::Base has_and_belongs_to_many :users end class User < ActiveRecord:: has_and_belongs_to_many :time_slots ...
0
votes
1answer
31 views

Having a hard time with has_and_belongs_to_many associations. Not sure how to add objects to a specified instance of its “belongs_to” table

I'm building an app where a User can create a Group and then invite other Users to join his group. A User can join many Groups and a Group will include many Users. I'm confused as to how I can add a ...
-2
votes
1answer
71 views

how can I include multiple values to has and belongs to many relation from various select box?

I have two tables items and sub_category and I have has_and_belongs_to_many relation between two. I have to select values for sub categories from different select boxes and include all those values to ...
0
votes
1answer
52 views

How to select the values dynamically from select box based on the previous select box?

I am sorry if i cannot make you understand. I have two tables where the first table contains categories and the next one contains sub-categories and i have another table item where i have ...
2
votes
0answers
29 views

workaround for polymorphic habtm in mongoid?

I was wondering if someone could help me model the below scenario. I have a User class, an Event class and a Venue class in Mongoid. I would like for users to be admins of either an Event or a Venue ...
1
vote
1answer
121 views

Grant access to user with Cancan & Rolify with has_and_belongs_to_many relationship

I got Partenaires resources who had many Agences, and User who had many Agences. I want to restrict access for each Partenaire with Cancan & Rolify. The only hack i found to do it, is to ...
1
vote
1answer
243 views

Use rails3-jquery-autocomplete with simple form on a has_and_belongs_to_many association

I'd like to have a form where groups can add their interests and this form should help them with autocompletion. As this is a many-to-many relation, I don't understand how to implement it class Group ...
0
votes
0answers
54 views

Get unique ids from 2 has_many relationships in rails

I can't find a simple way to get the ids of pointfields from this relationship pointtype has_and_belongs_to_many pointfields pointfield has_and_belongs_to_many pointtypes I do the following : ...
0
votes
1answer
25 views

Tag-like skills in a user profile with a HABTM relationship

In the web application I'm building a user has a profile where they can list their skills. I would like the kind of functionality StackOverflow has when making posts, where you can type tags into the ...
0
votes
2answers
192 views

form for object in two HABTM relationships, Rails 3

I'm trying to learn Ruby on Rails by building a website. Users can add content: Posts and Pictures. Posts and Pictures can have one or more Tags. I want each relationship to be HABTM so I can ...
1
vote
2answers
79 views

Has-Many and Belongs-to-one Relation

I'm trying to keep track of how many signup_conversions a user creates. Therefore, I have those two following models: signup_conversion.rb class SignupConversion < ActiveRecord::Base belongs_to ...
0
votes
1answer
73 views

Rails Relationship: Referencing the same table twice within a many-to-many relationship

I'm pretty new to rails and trying to figure out relationships. The data I'm trying to model is as follows: An Event is a gathering where people play games. An Event is recorded in multiple Videos. A ...
0
votes
1answer
45 views

How can I create a drop down for a has_and_belongs_to_many relationship?

Here are my models: class ThesisGroup < ActiveRecord::Base belongs_to :course has_and_belongs_to_many :students attr_accessible :code, :title, :course_id end class Student < ...
1
vote
1answer
45 views

Ordering posts by their tag in a HABTM relationship

I have correctly set up a HABTM relationship between Post and Tag. When the user navigates to a URL like http://site.com/tag/test I want to show all the posts tagged with test. Using the following ...
0
votes
1answer
64 views

Get related object has_and_belongs_to_many in rails

Let's say I got tasks and lists with an has_and_belongs_to_many relationship: class Task < ActiveRecord::Base attr_accessible :content, :due_date has_and_belongs_to_many :lists end class ...
0
votes
2answers
73 views

Using link_to to add object into HABTM relation table

In my application I have List objects and Problem objects, Lists are made up of Problems and problems can belong to many lists. I am using HABTM on both classes and I've created their join table like ...
1
vote
1answer
34 views

Retrieving all tags that belong to a post when editing a post

I have two models, Post and Tag which are set up in a HABTM relationship like so: class Post extends AppModel { public $hasAndBelongsToMany = array('Tag'); } class Tag extends AppModel { ...
0
votes
1answer
64 views

Rails contact form using new HABTM relationship and unregistered users

I'm new to Rails and I'm attempting to do the following, but I have a feeling I'm not doing it securely: A visitor to my site can see profile pages for users and contact them without registering. ...
0
votes
2answers
50 views

Can implement a has_and_belongs_to_many association

I'm a bit confused about a HABTM association with rails 3.2.11. I have an Image model: class Image < ActiveRecord::Base attr_accessible :description, :name, :image, :article_ids ...
0
votes
2answers
59 views

Displaying tag names rather than IDs using the form helper

In one of my forms I have a text input for a posts tags. At the moment, Cake is returning the tag id into this field rather than the name of the tag. I want to change it to show the name of the tag. ...
1
vote
1answer
46 views

Cake not calling beforeSave on a HABTM relationship

I have a hasAndBelongsToMany relationship set up between my Post model and Tag model. I want a beforeSave() method in my Tag model which will execute when tags are saved. Problem is, in my ...
0
votes
1answer
43 views

Rails: sortable has_and_belongs_to_many relationships

Given this relationship: class Doc < ActiveRecord::Base has_and_belongs_to_many :articles end and class Article < ActiveRecord::Base has_and_belongs_to_many :docs end How would you ...
1
vote
1answer
27 views

Automatically inserting tags before saving post with a HABTM relationship

I've got a system set up where a post can have many tags and vice versa. This is a HABTM relationship. Everything works fine, and there's a input box for me to select the relevant tags when adding a ...
0
votes
1answer
44 views

Saving post tags using a HABTM relationship

I have a Post model and Tag model which are both set up correctly with a HABTM relationship. I also have a table in my database called posts_tags which is named correctly as per the naming ...
0
votes
1answer
64 views

Automatically make post and tag relationships in a CakePHP blog

I'm writing a pretty simple blogging application using CakePHP to help me learn the framework. Blog posts can have many tags, and tags can belong to many blog posts (like on StackOverflow). Here's my ...
0
votes
0answers
184 views

HABTM in mongoid

i have two models Reservation field :size, type: Integer, default: 0 ... has_and_belongs_to_many :tables ... validates :size, numericality: { less_than_or_equal_to: :tables_capacity }, :if ...
0
votes
1answer
114 views

has_and_belongs_to_many to the same model in rails 3

I'm trying to make friends and enemies connections with has_and_belongs_to_many, therefore I created the following: create_table :people do |t| t.string :name end create_table ...
0
votes
2answers
108 views

Rails - how to order a model by its has many association?

I have two models: #Product class Product < ActiveRecord::Base has_and_belongs_to_many :categories attr_accessible :name ... end #Category class Category < ActiveRecord::Base ...
0
votes
1answer
72 views

HABTM and Naming conventions

I've been racking my head around a rails issue for a while and wanted to verify my findings. I was trying to get the Has_and_belongs_to_many relationship working, but couldn't connect my two classes, ...
0
votes
1answer
66 views

Not able to save Employee model

I'm a RoR newbie. I'm not able to create a new employee with assigned role. From the serverlog below I sort of figured that the record is not getting saved because "role_ids" is blank but I cannot ...
0
votes
1answer
80 views

Rails, has_and_belongs_to_many, :HashWithIndifferentAccess error

On my server, I have two models: Broadcast class Broadcast < ActiveRecord::Base validates_presence_of :content belongs_to :user has_and_belongs_to_many :feeds attr_accessible ...
0
votes
0answers
51 views

Ruby on Rails 3: Multiple has_and_belongs_to_many with different classes

Suppose I have four different classes Car, Truck, Boat, Motorbike. Some of the fields are in common, but they have different tables. I also have another class Person. I'm trying to build two different ...
0
votes
1answer
125 views

Rails HABTM Relation with multiple form elements

I am working on a project that has the need for a has_and_belongs_to_many relation. This involves Users having many "proposals" and a proposal belonging to many users. This is important as a user ...
2
votes
2answers
108 views

Split a string and save with has_and_belongs_to_many association

I have a text_field which the user can type in Tags(Like the ones on stackoverflow). They can seperate the tags with a comma. Now, I know how to split the tags. But the n00b that I am I'm stuck at the ...
0
votes
1answer
140 views

Rails 3 HABTM Join Table Re-use With Extra Field

So I have a HABTM relationship between my Students and Classrooms using a join table called ClassroomStudents to handle many students belonging to many classrooms. A recent business requirement came ...
1
vote
0answers
127 views

Grails BelongsTo with conditional query

I have two domain classes with a one to many relationship. Let’s call them the OneClass and the ManyMetadataClass. class OneClass { // ... some variables belongsTo = ...
0
votes
1answer
122 views

Rails 3 : Specify inner join criteria “ON” in the rails way

I want to access the table "Words" from the "linked_to" column, and not from "id" column. The INNER JOIN query created by Rails always search for the id column in the Words table. This is what I ...
1
vote
0answers
37 views

has and belongs to more than 1 table

I have an scaffold (critical_factor) with some fields like catalog_table_id and selectRight and also other scaffold (catalog_table) with the fields name table_name, model. When I select in the ...
0
votes
1answer
159 views

rails Specify INNER JOIN column in has_and_belongs_to_many relationship

I try to link "Points" to "Words" with a has_and_belongs_to_many relationhip. I use a table named dictionnaries_points containing "dictionnary_id" and "linked_to" columns. I specified in the model ...
3
votes
1answer
120 views

Rails - View not updating with new data until I clear the cache

I have a database that contains users and groups with a has_and_belongs_to_many relationship. When a new group is added, it gets created but the user's membership to the group doesn't seem to ...
0
votes
0answers
83 views

Not re-querying has_and_belongs_to_many associations

When saving an object in rails, the sunspot plugin is re-querying associations in the searchable block. This costs a lot of database overhead, which seems especially unnecessary as the object was just ...
0
votes
1answer
126 views

How to put a self many-to-many relationship together? [duplicate]

Possible Duplicate: rails many to many self join I have a problem that I can't find the answer... The state is: I have a model called Accessories and I also have a relationship ...
0
votes
1answer
145 views

Rails Devise User both belongs_to and has_many

After spending a few days of trying to find an answer online, I figured I should ask for help. I'm trying to figure out the best way to implement these relationships using Rails Associations. I have ...
0
votes
1answer
25 views

Association between models not working

I've set up a has_and_belongs_to_many association between two models. I need to access an attribute from one of the models for a method in another model. Right now my code looks like this, but I'm ...
3
votes
1answer
812 views

Creating a new record in Rails HABTM nested form

I've got a nested form (using Ryan B's nested_form gem) using a has_and_belongs_to_many to has_and_belongs_to_many setup: Opening has_and_belongs_to_many :contacts Contact has_and_belongs_to_many ...
0
votes
0answers
224 views

Rails 3 scope for habtm taking multiple options using AND

In an earlier question I looked into using scopes with a has_and_belongs_to_many relationship in Rails 3.2. Below are the models and scopes I've created. Class Section << ActiveRecord::Base ...

1 2 3 4