我试图在日期列上对FooTable表进行排序,该日期列也具有空值,输出为空字符串。我在我的HTML中包含了footable和footable.sorting之前的moment.js。我的空值显示并排序为01.01.1970。没有js控制台错误。任何人都能指出我正确的方向来解决这个问题吗?
<table class="footable table table-striped" data-sorting="true">
<thead>
<tr>
<th>(...)</th>
<th data-type="date" data-format-string="DD.MM.YYYY">Invoice Date</th>
<th>(...)</th>
</tr>
</thead>
答案 0 :(得分:0)
https://fooplugins.github.io/FooTable/docs/getting-started.html#column-formatter
使用列格式化程序并对Null进行自定义检查。一切都会好起来的。