我试图按照创建的基础降序注册公司排序......
我在控制器中添加了这一行
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>
但每次公司都按降序显示,但数据表不起作用。我该怎么办?
答案 0 :(得分:0)
您似乎需要一个插件或其他JavaScript文件来包含带引导程序的数据表。查看this link。希望这有帮助!
答案 1 :(得分:0)
tables need to be properly formatted, in-order for dataTables to work so put <thead> and <tbody> tag and remove "," from table tag
答案 2 :(得分:0)
我遇到了同样的问题,直到我在调用bootstrap.js文件的行中删除了 defer 为止。