It works using the specified branch, but not on the user panel, from what I see.
We are working on an index:
index do selectable_column column :id column :name
But can't get him to work on the show:
panel "Children - Process Nodes" do text_node link_to "New", new_admin_process_node_path(:parent_id => department_node.id) unless department_node.children.empty? table_for department_node.children do column :id column :name
selectable_column inside table_for does not work.
undefined local variable or `selectable_column 'method for #
Any idea?
thanks
source share