当我使用 dojo 开发前端 UI 时,我遇到了一个令人头疼的问题。这个问题我google了很久。mailist 和 bugtracker 也是如此。
当我使用 TabContainer 打开一个页面并切换到一个选项卡时,选项卡中的 DataGrid 没有正确显示。现在我切换到另一个选项卡并再次切换回来,网格正确显示。我在声明性 dojo 中实现了这一点。只有一行javascript代码。
<script>
function imgFormatter(s) {
return '<img src="' + s + '"/>';
}
</script>
情况是这样的:打开页面 http://i.stack.imgur.com/QGeid.png
切换到另一个选项卡并再次返回 http://i.stack.imgur.com/OWQxR.png
代码:
<div data-dojo-type="dijit.layout.TabContainer" data-dojo-props="region: 'center'">
<div data-dojo-type="dijit.layout.BorderContainer" data-dojo-props="region: 'center'" title="tab1">
tab1
</div>
<div data-dojo-type="dijit.layout.BorderContainer" data-dojo-props="region: 'center'" title="Hosts">
<div data-dojo-type="dijit.layout.ContentPane" data-dojo-props="region: 'center'">
<div data-dojo-type="dojo.data.ItemFileReadStore" data-dojo-props="url: dojo.config.api2Path + '/GangliaHostMetric', urlPreventCache:true, clearOnClose:true" data-dojo-id="gangliaHostSummaryStore"></div>
<table data-dojo-type="dojox.grid.DataGrid" data-dojo-props="region: 'center', query : {}, store:gangliaHostSummaryStore" data-dojo-id="gangliaHostSummaryGrid">
<thead>
<tr>
<th field="hostname">hostname</th>
<th field="load_report" width="300" formatter="imgFormatter">Load</th>
<th field="mem_report" width="300" formatter="imgFormatter">Memory</th>
<th field="network_report" width="300" formatter="imgFormatter">Network</th>
<th field="cpu_report" width="300" formatter="imgFormatter">CPU</th>
</tr>
</thead>
</table>
</div>
</div>
</div>