3

数据表编辑示例(使用 best_in_place)

此示例显示如何使用 datatables.net 和 best_in_place 创建可编辑表。

目前 Datatables.net 只有使用 JediTables jQuery 插件的示例。

4

1 回答 1

3

宝石文件:

gem "best_in_place"

应用程序/资产/javascripts/application.js:

//= require jquery
//= require jquery-ui
//= require jquery.purr
//= require best_in_place

应用程序/视图/时间表/index.html.haml:

%table
  - @schedules.each do |s|
    %tr
      %td= best_in_place s, :name
:javascript
$(document).ready(function() {
  /* Activating Best In Place */
  jQuery(".best_in_place").best_in_place();
});
于 2013-09-03T17:16:24.967 回答