0

我可以将 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

    });

AND 除了上述之外,然后为行定义一个 itemTemplate,最后能够排序、分页、编辑和绑定到下拉列表等

4

1 回答 1

0

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

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

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

查看入门指南

于 2017-06-19T01:46:25.913 回答