Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/sorting/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 在FooTable中正确排序日期列_Jquery_Sorting_Footable - Fatal编程技术网

Jquery 在FooTable中正确排序日期列

Jquery 在FooTable中正确排序日期列,jquery,sorting,footable,Jquery,Sorting,Footable,我正在使用FooTable JQuery插件来管理网页中的表 这是我的网页的HTML表格 <table id="member_list" class="table" data-paging="true" data-filtering="true" data-sorting="true" data-editing="true" data-state="true&q

我正在使用FooTable JQuery插件来管理网页中的表

这是我的网页的HTML表格

<table id="member_list" class="table" data-paging="true" data-filtering="true" data-sorting="true" data-editing="true" data-state="true">

<thead>
  <tr>
    <th data-toggle="true">Action</th>
    <th>Samaj Code</th>
    <th>Saman Name</th>
    <th>Samaj Branch</th>
    <th>Member Code</th>
    <th>Member Name</th>
    <th>Mobile</th>
    <th>DOB</th>
    <th data-hide="phone, tablet">Reg Date</th>
    <th data-hide="phone, tablet">Fees</th>
  </tr>
</thead>
<tbody id="tbody">

</tbody>
<tfoot class="footable-pagination-wrapper">
<tr class="active">
    <td colspan="10">
        <div class="text-right">
            <ul class="pagination-split  footable-pagination "></ul>
        </div>
    </td>
</tr>
</tfoot>
</table>
但它无法在DOB和Reg date列中对日期进行排序

如何解决这个问题


TIA

我忘了提到我正在使用Ajax加载表中的数据。除日期排序外,一切正常
$('#member_list').footable();