You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my app, after you've sorted already, and when you add a new item to the list of items that being pulled for rails_sortable, it's added to the end of the list instead of first.
Is there a way for this gem to automatically make newly added database items appear first (have sort = 1)?
The text was updated successfully, but these errors were encountered:
Well you can see in max_sort that it's setting newly created items to have a max_sort, not 1. To me, this should be an option - to have newly created items default to a sort value of 1 or a sort value of max_sort.
Let's say I have 50 items, and they are sorted 1-50. Now let's say I add a new item. I don't necessarily always want that new item to have a sort value of 51. I would like it to have a sort value of 1 (so it's added to the beginning when ordering by the sort value). Then of course every other object would have to get +1 added to their sort value.
Since I've created this issue, I've already found a workaround with something like this:
after_create :update_sort
def update_sort
self.sort = 1
self.save!
Product.where.not(id: self.id).each do |p|
p.update(sort: p.sort + 1)
end
end
In my app, after you've sorted already, and when you add a new item to the list of items that being pulled for rails_sortable, it's added to the end of the list instead of first.
Is there a way for this gem to automatically make newly added database items appear first (have sort = 1)?
The text was updated successfully, but these errors were encountered: