テーブルデータの並べ替えと検索に jquery database rails gem を使用しています。正常に動作していますが、number_with_delimiter などの Rails ヘルパー メソッドを使用してコンマで区切られた数値を表示すると、適切な並べ替え結果が得られません。
Railsヘルパーを使用しないと、適切な結果が得られ、テーブルデータは正しくソートされます. 誰でも私を助けることができますか?
これが私のコードです:
脚本
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#d3').dataTable({
"sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
"sPaginationType": "bootstrap",
aaSorting : [[2, 'desc']],
});
});
</script>
私のパーシャルでは、テーブルデータは
<table class="table table-striped table-bordered " id="d3">
<thead>
<tr>
<th>Folder</th>
<th>#Files</th>
<th>Source Lines</th>
<th>Contents</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<td>String data</td>
<td>numeric data</td>
<td>numeric data</td>
<td>string data</td>
<td>string data</td>
</tbody>
</table>
これが私の結果です(3列目のデータ)
SourceLines
994
98
974
.
.
.
101
1,890
1,674