linq查询结果到视图中的数据表

时间:2015-09-15 06:41:18

标签: c# asp.net-mvc linq datatable

有没有办法如何使用jquery中的数据表显示linq查询结果?

示例:

在我的控制器中:

public ActionResult All_Refers()
    {
        var results = db.rms_referred_vw.ToList();
        return PartialView(results);
    }

在我看来:

@model IEnumerable<RMSystem.Models.rms_referred_vw>

<table id="example">
<thead>
    <tr>
        <th>Referral ID</th>
        <th>Badge No</th>
        <th>Full Name</th>
        <th>Department</th>
        <th>Email</th>
        <th>Date Hired</th>
        <th>Referred By</th>
        <th>Date Referred</th>
        <th>Is Active?</th>
    </tr>
</thead>
<tbody>

@foreach(var rfp in Model){
    <tr>
        <td>
             @Ajax.ActionLink(Convert.ToString(rfp.rf_id), "Edit_Ref", new { rf_id = rfp.rf_id },
                    new AjaxOptions
                    {
                      HttpMethod = "POST",
                      InsertionMode = InsertionMode.Replace,
                      UpdateTargetId = "target6",
                    }, new  {@style="color:darkblue", title = "Edit Referred Person"})
        </td>
        <td>@Html.DisplayFor(model => rfp.rf_badgeno)</td>
        <td>@Html.DisplayFor(model => rfp.Fullname)</td>
        <td>@Html.DisplayFor(model => rfp.dept)</td>
        <td>@Html.DisplayFor(model => rfp.user_email)</td>
        <td>@Html.DisplayFor(model => rfp.user_datehired)</td>
        <td>@Html.DisplayFor(model => rfp.referredby)</td>
        <td>@Html.DisplayFor(model => rfp.rf_createddate)</td>
        <td>
            @if (rfp.rf_isactive == true) { 
                <text>Yes</text>
            }else{
               <text>No</text>
            }
        </td>
         <td><input type="button" value="Send Email for Regularization"/></td>
    </tr>
    }


</tbody>

但是当我尝试使用这个时,我收到了一个错误

  

“0x800a138f - JavaScript运行时错误:无法获取属性   未定义或空引用的'fnSetData',“

这是什么意思?

任何想法如何使用jquery中的数据表格式查看查询结果?

非常感谢你的帮助。

这是我的脚本代码:

<script>
    $(function(){
        $("#example").dataTable();
    })
</script>

1 个答案:

答案 0 :(得分:1)

您已在头部指定了9个列标题,并在正文中插入了10个列值。我怀疑您忘记添加列标题。在标题中添加一个列标题并进行检查。