Bootgrid 为 table 中的每个数据生成 0
Bootgrid generates 0s for every data in the table
在数据 table 呈现 table 时出现问题后,我在我的网站上使用了 bootgrid。 Bootgrid 很好地渲染了 table。 table 变成了一个数据网格,而不像我在上一个问题中问到的数据 tables。但是在 bootgrid 呈现 table 之后,所有值都变为 0。这是为什么 ?有解决办法吗?
我刚用了这段代码
$( document ).ready(function() {
$('#data_table').bootgrid();
});
我用这个JQuery引用
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
如果您使用提供给它的数据加载 bootgrid,那么您必须向该列添加 "data-column-id" 属性。
例如:对于列 Sender,table 结构应该是这样的:
<table id="data_table">
<thead><tr>
<th data-column-id="sender">Sender</th>
</tr>
</thead>
</table>
在数据 table 呈现 table 时出现问题后,我在我的网站上使用了 bootgrid。 Bootgrid 很好地渲染了 table。 table 变成了一个数据网格,而不像我在上一个问题中问到的数据 tables。但是在 bootgrid 呈现 table 之后,所有值都变为 0。这是为什么 ?有解决办法吗?
我刚用了这段代码
$( document ).ready(function() {
$('#data_table').bootgrid();
});
我用这个JQuery引用
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
如果您使用提供给它的数据加载 bootgrid,那么您必须向该列添加 "data-column-id" 属性。
例如:对于列 Sender,table 结构应该是这样的:
<table id="data_table">
<thead><tr>
<th data-column-id="sender">Sender</th>
</tr>
</thead>
</table>