在使用PartialView加载的表中缺少数据表的某些部分

本文关键字:数据表 些部 PartialView 加载 | 更新日期: 2023-09-27 17:50:35

我有一个视图在我的mvc应用程序。根据选择下拉菜单。对于ajax,数据表是使用PartialView加载的。

但是,在表中没有看到Next、Previous按钮或搜索框。表的样式不能正确加载

这是我的代码

in my main view

<div id="tablo">
   @{ Html.Partial("TestTable", Model); }
</div>

My Partial View;

<table class="dynamicTable">
    <thead>
        <tr>
            <th>Part</th>
        </tr>
    </thead>
    <tbody>
        @for (int i = 0; i < @Model.allparts.Count; i++)
        {
            <tr>
                <td>@Model.allparts[i].PartName</td>
            </tr>
        }
    </tbody>
</table>

在使用PartialView加载的表中缺少数据表的某些部分

我看不到任何html标记的按钮在你的主视图或部分。如果部分是基于选择列表生成的,那么主视图无疑是包含这些按钮的最佳位置