1

我需要以编程方式实例化一个easyUI propertygrid 并将其附加到一个div。这应该很容易,但我是 jQuery 和 EasyUI 的新手。

4

1 回答 1

0

尝试这个,

HTML

<div>
  <table id="pg" class="easyui-propertygrid" style="width:300px">
  </table>
</div>

查询

$('#pg').propertygrid({
   url:'path/to/json/file',
   showGroup:true,
   scrollbarSize:1
}); 

链接到演示

于 2013-05-04T19:58:37.643 回答