在dojo.xhrGet
我已指定此load:
:
load: function (data) {
// reset data display containers
dojo.addClass("search_results", "hide_on_load");
dojo.byId("search_results_found").innerHTML = "";
// populate table with new results.
dojo.byId("search_results_found").innerHTML = "" + data.length + " search result(s) found.";
// when data is from an XHR request, you must transform it into a store.
// See: http://stackoverflow.com/questions/2423459/datagrid-in-dojo-with-json-data-from-a-servlet
var items = dojo.map(data, function (res_row) {
return {
'Id': res_row.Id,
'Name': res_row.Name,
'VisitType': res_row.VisitType,
'VisitDate': res_row.VisitDate
};
});
var store = new dojo.data.ItemFileReadStore({
data: {
items: items
}
});
var res_layout = [
{field: 'Id', name: 'ID', width: '10%'},
{field: 'Name', name: 'Site Name', width: '50%'},
{field: 'VisitType', name: 'Visit Type', width: '20%'},
{field: 'VisitDate', name: 'Visit Date', width: '20%'}
];
// create a new grid:
var res_grid = new dojox.grid.DataGrid({
store: store,
structure: res_layout,
rowsPerPage: 10
}, document.createElement('div'));
// append the new grid to the div "search_results_table":
dojo.byId("search_results_table").appendChild(res_grid.domNode);
// Call startup, in order to render the grid:
res_grid.startup();
dojo.removeClass("search_results", "hide_on_load");
standby.hide();
},
而且,html是:
<!-- Search Results Table -->
<div id="search_results" class="hide_on_load">
<div id="search_results_found"></div>
<div id="search_results_table"></div>
</div>
在此脚本的末尾,网格未显示。
我删除了hide_on_load css类选择器,以便我可以将其排除为问题。但是,这没有帮助。
查看控制台,没有记录错误。
此外,编写各种对象(res_grid,store等)都会产生看起来正确的输出。
有人可以提供一些如何让它展示的帮助吗?
谢谢!
更新
当我运行此代码后检查DOM时,我看到使用标题创建的tabler但是当我去查找带有搜索结果的实际表时(在div class=dojoxGridContent
下),它不在那里。
更新2:
我也指定了样式:
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.6/dojox/grid/resources/Grid.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.6/dojox/grid/resources/claroGrid.css";
.dojoxGrid table { margin: 0; }
</style>
答案 0 :(得分:2)
确保通过放置网格的div上的style属性设置大小,并且不要忘记导入网格的CSS文件,例如:
<style type="text/css">
@import "dojoroot/dojox/grid/resources/Grid.css";
@import "dojoroot/dojox/grid/resources/soriaGrid.css";
.dojoxGrid table {
margin: 0;
}
</style>
注意:根据您使用的任何主题替换soria ......
...并且不要忘记为网格的dom节点设置大小:
<div id="gridnode" style="width:100%; height:500px;"></div>
答案 1 :(得分:0)
如果您不想要修复高度,可以使用autoHeight: true
声明网格。
var res_grid = new dojox.grid.DataGrid({
store: store,
structure: res_layout,
rowsPerPage: 10,
autoHeight: true
}, document.createElement('div'));
使用此属性,您不需要将样式添加到父容器中以供显示。