js网格模板化的行和列

时间:2017-05-31 23:54:32

标签: asp.net-mvc jsgrid

我可以将jsgrid与html表中的预定义列绑定

<table id="MapDetails">
   <thead>
       <th>...
       <th>..
   </thead>
   <tbody>
   </tbody>
 </table>

那么,我现在可以这样做吗?

$("#MapDetails").jsGrid({
        width: "100%",
        height: "400px",

        inserting: true,
        editing: true,
        sorting: true,
        paging: true

    });

除上述之外,然后为行定义itemTemplate,最后能够对下拉列表等进行排序,分页,编辑和绑定等。

1 个答案:

答案 0 :(得分:0)

不,无法在预定义的表标记之上定义jsGrid。所有标记都将由插件呈现。 只需声明一个空元素并在顶部初始化jsGrid即可提供配置。

<div id="jsGrid"></div>

<script>
    $("#jsGrid").jsGrid({
        // your configuration
    });
</script>

查看入门guide