js网格模板行和列

js grid templated rows and columns

我可以将 jsgrid 与 html table

中的预定义列绑定吗
<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 并最终能够排序、分页、编辑和绑定到下拉列表等

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

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

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

查看入门指南guide