JSFiddle - React, Tailwind, and code Playground
by mingjian sun
HTML
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/gm.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/gm.css">
<div style='height: 800px;'>
<div>
before table
</div>
<div>
<table id='table-demo-baseCode'></table>
</div>
<div>
after table
</div>
</div>
JavaScript
document.querySelector('#table-demo-baseCode').GM({
height: '100%',
gridManagerName: 'demo-baseCode',
ajaxData: 'https://www.lovejavascript.com/learnLinkManager/getLearnLinkList',
columnData: [
{
key: 'name',
text: '名称'
},{
key: 'info',
text: '说明'
},{
key: 'url',
text: 'url'
}
]
});