2

我正在尝试按创建的基础对注册公司进行降序排序...
我在控制器中添加了这一行

public ActionResult AllCompanyList(CompanyModel companyModel)
{
    companyModel.companyList = CompanyManager.GetAllCompanies().OrderByDescending(m=>m.CreatedOn).ToList();
} 

我在视图中添加了这个

<table class="table table-striped table-bordered data-table", id="example">  
<script type="text/javascript">
     $(document).ready(function ()
     {
         $('#example').dataTable({"sPaginationType": "bootstrap", "aoColumns": null,    { "asSorting": ["desc"] },null ]});
     });
</script>  

但是每次公司都以降序显示但数据表不起作用。我应该怎么办?

4

3 回答 3

0
 tables need to be properly formatted, in-order for dataTables to work so put <thead> and <tbody> tag and remove "," from table tag
于 2013-05-28T07:26:07.860 回答
0

似乎您需要一个插件或另一个 JavaScript 文件来包含带有引导程序的数据表。看看这个链接。希望这可以帮助!

于 2013-05-28T06:23:07.990 回答
0

我遇到了同样的问题,直到我在调用 bootstrap.js 文件的行中删除了defer

于 2020-08-23T18:40:24.503 回答