best_in_place with more:activator

时间:2013-04-09 12:27:49

标签: ruby-on-rails best-in-place

我想构建一个视图,只需单击它就可以编辑所有列出的元素,但如果有一个Edit按钮也会很好,它会激活输入字段。

如果没有:激活器,则单击事件是默认值,但使用激活器时,此单击事件不起作用。我怎么能打开更多激活剂? (在这种情况下,通过单击文本并单击按钮。)

我的代码:

%tr{id: "department_#{department.id}"}
  %td=best_in_place department, :name, type: :input, :activator => "#activator-#{department.id}"
  %td=link_to 'Edit', edit_department_path(department), id: "activator-#{department.id}", class: 'btn', remote: true
  %td=link_to 'Delete', department, method: :delete, class: 'btn', remote: true, data: { confirm: 'Are you sure?' }

谢谢!

0 个答案:

没有答案