2013-05-28 43 views
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> 

但每實時公司以降序顯示,但數據表不起作用。我該怎麼辦?

+0

那麼,表格在哪裏?我看到一個開始標籤;那個時候唯一允許的孩子是'','','',&''。你也有一個逗號需要消失。 –

回答

0

看起來你需要一個插件或其他JavaScript文件來包含引導程序的數據表。檢查出this link。希望這可以幫助!

+0

我試過,但它仍然不能正常工作 – user2427182

+0

<表類= 「table表條紋表鑲上數據表」> 公司名稱 @if(型號!= NULL){的foreach(VAR項目在Model.companyList){ ​​ (@ item.Id) } } – user2427182

0
tables need to be properly formatted, in-order for dataTables to work so put <thead> and <tbody> tag and remove "," from table tag