如何防止JQXDataTable自动键入列

时间:2019-04-18 12:46:13

标签: c# html asp.net-mvc model-view-controller jqxwidgets

我需要一种避免这种自动键入的方法,这样我就可以使列标题为“ Update Number”并输出整数。

这是我的代码:

  <table class="table table-striped" id="tblSoftwareUpdates" style="display:none;">
        <thead>
            <tr>
                <th>
                    Update Number
                </th>
                <th>
                    Name
                </th>
            </tr>
        </thead>
    @foreach (var item in Model) {
        <tr>
            <td>
                @Html.DisplayFor(modelItem => item.Id)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Name)
            </td>
    </table>

我正在尝试制作一个JQXDataTable,其标题为“ Update Number”,该标题由整数组成,“ Name”由字符串组成。问题是我的JQDataTable自动解析标​​题标题并自动键入列值。

因此,我希望“ Update Number”列输出整数,但是似乎由于“ Update”包含单词“ date” up(date),因此它将该列中的所有数据分配为DateTime格式。

0 个答案:

没有答案