How to build a record of a many_to_many relation with a form?
Say, I have two model in a many to many
relationship (without additional attributes), so a simple has_and_belongs_to_many
relationship.
For the purpose, let's say I have a user
model and a course
model.And the corresponding join table courses_users
has only the foreign keys user_id
and course_id
as attributes.
Now I'm listing (say in the show page of the user
) all the course
and according to if the current user
has enrolled or not (i.e. if a record exist in the join table) I display a cross ✘ or a check ✔.
No problem thus far.
The problem is that I'm unable to make it editable in a form.
I mean how can I associate a form checkbox with the fact that if it is checked I build a relation, and if not I delete it?
Thank you very much.
Here is my simple models:
class User < ApplicationRecord
has_and_belongs_to_many :courses
end
class Course < ApplicationRecord
has_and_belongs_to_many :users
end
And here is my form attempt but I don't know at all what to do next.
I thought about checking for the foreign key of the course..
<%= form_with model: @user do |form| %>
<%= @courses.each do |course| %>
<%= form.fields_for :courses do |ff| %>
<%= ff.check_box 'course_id', checked: (@user.courses.include? course.id) %>
<%= ff.label 'course_id' %>
<% end %>
<% end %>
<%= form.submit %>
<% end %>
ruby-on-rails database forms activerecord nested
add a comment |
Say, I have two model in a many to many
relationship (without additional attributes), so a simple has_and_belongs_to_many
relationship.
For the purpose, let's say I have a user
model and a course
model.And the corresponding join table courses_users
has only the foreign keys user_id
and course_id
as attributes.
Now I'm listing (say in the show page of the user
) all the course
and according to if the current user
has enrolled or not (i.e. if a record exist in the join table) I display a cross ✘ or a check ✔.
No problem thus far.
The problem is that I'm unable to make it editable in a form.
I mean how can I associate a form checkbox with the fact that if it is checked I build a relation, and if not I delete it?
Thank you very much.
Here is my simple models:
class User < ApplicationRecord
has_and_belongs_to_many :courses
end
class Course < ApplicationRecord
has_and_belongs_to_many :users
end
And here is my form attempt but I don't know at all what to do next.
I thought about checking for the foreign key of the course..
<%= form_with model: @user do |form| %>
<%= @courses.each do |course| %>
<%= form.fields_for :courses do |ff| %>
<%= ff.check_box 'course_id', checked: (@user.courses.include? course.id) %>
<%= ff.label 'course_id' %>
<% end %>
<% end %>
<%= form.submit %>
<% end %>
ruby-on-rails database forms activerecord nested
1
see Cocoon Gem, best for nested forms. You can dynamically add and remove nested form elements.
– Sikandar Tariq
Nov 13 '18 at 7:06
Thanks I'll take a look.. But I would want to know how to handle that with regular rails...
– SanjiBukai
Nov 13 '18 at 7:32
by looking at your problem I think you'll need JQuery/Javascript to achieve the required functionality... and the gem I referred will do exactly the same (will provide JQuery implementation for this)
– Sikandar Tariq
Nov 13 '18 at 7:48
I thought that this is not something related to the client side. I mean if I could built that form correctly with rails forms or if I can have the "data" built by some JS.. I'll just get some kind of structured params.. But I'll still need a way to understand that params and build according relationships in the controller.
– SanjiBukai
Nov 13 '18 at 8:14
add a comment |
Say, I have two model in a many to many
relationship (without additional attributes), so a simple has_and_belongs_to_many
relationship.
For the purpose, let's say I have a user
model and a course
model.And the corresponding join table courses_users
has only the foreign keys user_id
and course_id
as attributes.
Now I'm listing (say in the show page of the user
) all the course
and according to if the current user
has enrolled or not (i.e. if a record exist in the join table) I display a cross ✘ or a check ✔.
No problem thus far.
The problem is that I'm unable to make it editable in a form.
I mean how can I associate a form checkbox with the fact that if it is checked I build a relation, and if not I delete it?
Thank you very much.
Here is my simple models:
class User < ApplicationRecord
has_and_belongs_to_many :courses
end
class Course < ApplicationRecord
has_and_belongs_to_many :users
end
And here is my form attempt but I don't know at all what to do next.
I thought about checking for the foreign key of the course..
<%= form_with model: @user do |form| %>
<%= @courses.each do |course| %>
<%= form.fields_for :courses do |ff| %>
<%= ff.check_box 'course_id', checked: (@user.courses.include? course.id) %>
<%= ff.label 'course_id' %>
<% end %>
<% end %>
<%= form.submit %>
<% end %>
ruby-on-rails database forms activerecord nested
Say, I have two model in a many to many
relationship (without additional attributes), so a simple has_and_belongs_to_many
relationship.
For the purpose, let's say I have a user
model and a course
model.And the corresponding join table courses_users
has only the foreign keys user_id
and course_id
as attributes.
Now I'm listing (say in the show page of the user
) all the course
and according to if the current user
has enrolled or not (i.e. if a record exist in the join table) I display a cross ✘ or a check ✔.
No problem thus far.
The problem is that I'm unable to make it editable in a form.
I mean how can I associate a form checkbox with the fact that if it is checked I build a relation, and if not I delete it?
Thank you very much.
Here is my simple models:
class User < ApplicationRecord
has_and_belongs_to_many :courses
end
class Course < ApplicationRecord
has_and_belongs_to_many :users
end
And here is my form attempt but I don't know at all what to do next.
I thought about checking for the foreign key of the course..
<%= form_with model: @user do |form| %>
<%= @courses.each do |course| %>
<%= form.fields_for :courses do |ff| %>
<%= ff.check_box 'course_id', checked: (@user.courses.include? course.id) %>
<%= ff.label 'course_id' %>
<% end %>
<% end %>
<%= form.submit %>
<% end %>
ruby-on-rails database forms activerecord nested
ruby-on-rails database forms activerecord nested
asked Nov 13 '18 at 2:59
SanjiBukaiSanjiBukai
19513
19513
1
see Cocoon Gem, best for nested forms. You can dynamically add and remove nested form elements.
– Sikandar Tariq
Nov 13 '18 at 7:06
Thanks I'll take a look.. But I would want to know how to handle that with regular rails...
– SanjiBukai
Nov 13 '18 at 7:32
by looking at your problem I think you'll need JQuery/Javascript to achieve the required functionality... and the gem I referred will do exactly the same (will provide JQuery implementation for this)
– Sikandar Tariq
Nov 13 '18 at 7:48
I thought that this is not something related to the client side. I mean if I could built that form correctly with rails forms or if I can have the "data" built by some JS.. I'll just get some kind of structured params.. But I'll still need a way to understand that params and build according relationships in the controller.
– SanjiBukai
Nov 13 '18 at 8:14
add a comment |
1
see Cocoon Gem, best for nested forms. You can dynamically add and remove nested form elements.
– Sikandar Tariq
Nov 13 '18 at 7:06
Thanks I'll take a look.. But I would want to know how to handle that with regular rails...
– SanjiBukai
Nov 13 '18 at 7:32
by looking at your problem I think you'll need JQuery/Javascript to achieve the required functionality... and the gem I referred will do exactly the same (will provide JQuery implementation for this)
– Sikandar Tariq
Nov 13 '18 at 7:48
I thought that this is not something related to the client side. I mean if I could built that form correctly with rails forms or if I can have the "data" built by some JS.. I'll just get some kind of structured params.. But I'll still need a way to understand that params and build according relationships in the controller.
– SanjiBukai
Nov 13 '18 at 8:14
1
1
see Cocoon Gem, best for nested forms. You can dynamically add and remove nested form elements.
– Sikandar Tariq
Nov 13 '18 at 7:06
see Cocoon Gem, best for nested forms. You can dynamically add and remove nested form elements.
– Sikandar Tariq
Nov 13 '18 at 7:06
Thanks I'll take a look.. But I would want to know how to handle that with regular rails...
– SanjiBukai
Nov 13 '18 at 7:32
Thanks I'll take a look.. But I would want to know how to handle that with regular rails...
– SanjiBukai
Nov 13 '18 at 7:32
by looking at your problem I think you'll need JQuery/Javascript to achieve the required functionality... and the gem I referred will do exactly the same (will provide JQuery implementation for this)
– Sikandar Tariq
Nov 13 '18 at 7:48
by looking at your problem I think you'll need JQuery/Javascript to achieve the required functionality... and the gem I referred will do exactly the same (will provide JQuery implementation for this)
– Sikandar Tariq
Nov 13 '18 at 7:48
I thought that this is not something related to the client side. I mean if I could built that form correctly with rails forms or if I can have the "data" built by some JS.. I'll just get some kind of structured params.. But I'll still need a way to understand that params and build according relationships in the controller.
– SanjiBukai
Nov 13 '18 at 8:14
I thought that this is not something related to the client side. I mean if I could built that form correctly with rails forms or if I can have the "data" built by some JS.. I'll just get some kind of structured params.. But I'll still need a way to understand that params and build according relationships in the controller.
– SanjiBukai
Nov 13 '18 at 8:14
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53273154%2fhow-to-build-a-record-of-a-many-to-many-relation-with-a-form%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53273154%2fhow-to-build-a-record-of-a-many-to-many-relation-with-a-form%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
see Cocoon Gem, best for nested forms. You can dynamically add and remove nested form elements.
– Sikandar Tariq
Nov 13 '18 at 7:06
Thanks I'll take a look.. But I would want to know how to handle that with regular rails...
– SanjiBukai
Nov 13 '18 at 7:32
by looking at your problem I think you'll need JQuery/Javascript to achieve the required functionality... and the gem I referred will do exactly the same (will provide JQuery implementation for this)
– Sikandar Tariq
Nov 13 '18 at 7:48
I thought that this is not something related to the client side. I mean if I could built that form correctly with rails forms or if I can have the "data" built by some JS.. I'll just get some kind of structured params.. But I'll still need a way to understand that params and build according relationships in the controller.
– SanjiBukai
Nov 13 '18 at 8:14