Displaying 1 result from an estimated 1 matches for "reorder_group_memb".
2006 Jun 09
0
Sortable list with non ajax submission
I am trying to create a sortable list that is submitted not with an AJAX
call but by a standard form submit button.
Right now I have
def reorder_group_members
@group = Group.find(params[:id])
@group.group_members.each do |member|
member.position = params[:memberlist].index(member.id.to_s) + 1
#I get a nil error for this line. It would seem that
params[:memberlist] is not getting set.
member.save
end
render :action =&g...