开发者

Rails: UI to add children from large record set to parent model in HABTM relationship

开发者 https://www.devze.com 2023-01-05 23:38 出处:网络
Given the parent / child HABTM relationship: class List < ActiveRecord::Base has_and_belongs_to_many :items

Given the parent / child HABTM relationship:

class List < ActiveRecord::Base
  has_and_belongs_to_many :items
end

class Item < ActiveRecord::Base
  has_and_belongs_to_many :lists
end

I need to set up a UI to add Items (children) to a List (parent) from the List create / edit form. The wrinkle is that there are far too many Items records to use checkboxes. An initial thought is to have a popup window that allows the user to browse the collection of Items to find the records to add, but I'm not su开发者_开发问答re how that would work with new List records (where the parent ID would not yet exist). I'm looking for a solution that will make it easy for the user to navigate the large collection of child records and add them to a parent record in an intuitive manner with the minimum amount of clicks required.

Users will need the ability to browse the Item records to find acceptable choices, so an auto-complete text box which would force users to search for records they want will not work in this case. The child Item records are organized with multiple attributes (e.g. title, author, genre, rating), so my original plan was to set up a table with the Item records with AJAX filter and sort to allow the user to narrow down the Item collection to the desired elements, and to then somehow add selected records to a List. Users do not need to be able to define new Item records while creating a list (i.e. when creating a List, the user will simply select multiple Items from the existing collection).


I like the auto-completing text-box for lookups like this; it'll depend on if your child-data set is intuitive enough for users to guess.

0

精彩评论

暂无评论...
验证码 换一张
取 消