dojo中的dojox/grid/EnhancedGrid表格报错

前端之家收集整理的这篇文章主要介绍了dojo中的dojox/grid/EnhancedGrid表格报错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、错误截图


2、错误出处

<body class="claro">
	<div id="gridContainer">
	    <span id="jsonStore"
	          url="data.json"
	          data-dojo-id="jsonStore"
	          data-dojo-type="dojo/data/ItemFileWriteStore"
	          >
	    </span>
	    <table id="gridData" query="{ id: '*' }"
		       store="jsonStore"
		       data-dojo-type="dojox/grid/EnhancedGrid">
	       <thead>
	           <tr>
	             <th field="name" name="国家"></th>
	             <th field="type" name="洲"></th>
	           </tr>
	       </thead>
	    </table>
		<div id="grid" dojoType="dojox.grid.EnhancedGrid" store="test_store[0]" structure="layout" plugins="plugins" summary="A customized grid summary"></div>
	</div>
</body>
原文链接:https://www.f2er.com/dojo/291237.html

猜你在找的Dojo相关文章