我需要以编程方式实例化一个easyUI propertygrid并将其附加到div。它应该很简单,但我是jQuery和EasyUI的新手。
答案 0 :(得分:0)
试试这个,
<强> HTML 强>
<div>
<table id="pg" class="easyui-propertygrid" style="width:300px">
</table>
</div>
<强> JQUERY 强>
$('#pg').propertygrid({
url:'path/to/json/file',
showGroup:true,
scrollbarSize:1
});
链接到demos