我有一个问题使用dojox.grid.DataGrid,即时通讯使用此代码加载dojox.layout.ContentPane,遗憾的是在IE7和IE8不起作用,但在Firefox 3.6确实工作正常。
function getHTML(URL, dest) {
var myCp= dijit.byId(destino);
myCp.destroyDescendants();
myCp.attr("href", URL);`
这是我第一次使用Dojo 1.4.2,我从dojoexplorer网站上获取了这个,我一直在寻找解决方案。我使用此代码来跨越加载的代码
<div id="mainTabContainer" dojoType="dijit.layout.TabContainer" region="center">
<div id="LoaderX" dojoType="dojox.layout.ContentPane" title="Welcome" selected="true" closable="false" href="app/general/content/cd.jsp" executeScripts="true"></div></div>
这就是我如何称呼js
onclick="getHTML('app/adm/div/form.jsp','LoaderX')"
最后,我如何在form.jsp
中显示网格 <span dojoType="dojo.data.ItemFileWriteStore" jsId="store3" url="/telsap/port/app/adm/zone/rt.jsp" >
和
<table dojoType="dojox.grid.DataGrid" loadingMessage="Lopading..." columnReordering="true" jsId="grid3" store="store3" query="{ ypnum_zone: '*' }" rowsPerPage="30" clientSort="true" rowSelector="20px" >
<thead>
<tr>
<th width="100px" field="zone">Zone</th>
<th width="300px" field="dep" >Department</th>
<th width="auto" field="city" >City</th>
<th width="auto" field="mng" >Managment</th>
<th width="auto" field="state" >State</th>
</tr>
</thead>
我知道它一定是我看不到的东西,我是dojo的新手,谢谢你的帮助