我正在使用以下项目: http://bootstrap-table.wenzhixin.net.cn/getting-started/
我使用这个gem整合:https://github.com/bjevanchiu/bootstrap-table-rails
效果很好,但现在我想利用bootstrap-table库提供的可编辑扩展
这是我的HTML:
<table id="table" data-toggle="table" class="table table-striped">
<thead>
<tr>
<th data-field="comments" data-editable="true">Comments</th>
</tr>
</thead>
<tbody>
<%= render @tables %>
</tbody>
</table>
<link href="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.0/bootstrap3-editable/css/bootstrap-editable.css" rel="stylesheet"/>
<script src="//cdnjs.cloudflare.com/ajax/libs/x-editable/1.5.0/bootstrap3-editable/js/bootstrap-editable.min.js"></script>
渲染效果很好,我可以点击这里的元素:http://vitalets.github.io/x-editable/demo.html
问题是,在我验证更改后,我的Active Records未更新。似乎没有&#34; PUT&#34;请求发生...(事实上,没有任何反应)。
我是Rails的新手,所以我可能会遗漏一些明显的东西...... data-url
标签似乎有一个<table>
选项,但我不确定是否和我应该如何使用它。
谢谢!