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

最佳答案

尝试这个,

的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

10-04 16:12