问题
I'm trying a simple "resize" behavior with a Dojo DataGrid object. The "width" is working fine as expected. However "height" is not working, and the Grid is displayed only with the initial rendering value.
This is a hyperlink of a HTML file with the problem reproduced.
https://www.ibm.com/developerworks/community/files/form/anonymous/api/library/45f7c930-197b-4a26-88c1-2445045c3b0b/document/3db02339-113a-44b3-828b-3c149b1a2f86/media/teste_datagrid.htm
This is the source code:
<!DOCTYPE html>
<!-- https://dojotoolkit.org/reference-guide/1.10/dojox/grid/DataGrid.html -->
<html >
<head>
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojo/dojo.js"> </script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.10.4/dijit/themes/claro/claro.css">
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojox/grid/resources/claroGrid.css";
/*Grid needs an explicit height by default*/
#gridDiv {
height: 100%;
width: 100%;
}
</style>
<script>dojoConfig = {async: true, parseOnLoad: false}</script>
<script>
require(['dojo/_base/lang', 'dojox/grid/DataGrid', 'dojo/data/ItemFileWriteStore', 'dojo/dom', 'dijit/form/Button', 'dojo/domReady!'],
function(lang, DataGrid, ItemFileWriteStore, dom, Button){
/*set up data store*/
var data = {
identifier: "id",
items: []
};
var data_list = [
{ col1: "normal", col2: false, col3: 'But are not followed by two hexadecimal', col4: 29.91},
{ col1: "important", col2: false, col3: 'Because a % sign always indicates', col4: 9.33},
{ col1: "important", col2: false, col3: 'Signs can be selectively', col4: 19.34}
];
var rows = 60;
for(var i = 0, l = data_list.length; i < rows; i++){
data.items.push(lang.mixin({ id: i+1 }, data_list[i%l]));
}
var store = new ItemFileWriteStore({data: data});
/*set up layout*/
var layout = [[
{'name': 'Column 1', 'field': 'id', 'width': '100px'},
{'name': 'Column 2', 'field': 'col2', 'width': '100px'},
{'name': 'Column 3', 'field': 'col3', 'width': '200px'},
{'name': 'Column 4', 'field': 'col4', 'width': '150px'}
]];
/*create a new grid*/
var grid = new DataGrid({
id: 'grid',
store: store,
structure: layout,
rowSelector: '20px'});
/*append the new grid to the div*/
grid.placeAt("gridDiv");
/*Call startup() to render the grid*/
grid.startup();
// Create a button programmatically:
var myButton = new Button({
label: "Click me!",
onClick: function(){
dom.byId("parentDiv").style.height = "400px";
dom.byId("parentDiv").style.width = "400px";
if (grid){
grid.resize();
//grid.update();
dom.byId("result1").innerHTML = ("h: "+dom.byId("parentDiv").style.height+"/ w:"+dom.byId("parentDiv").style.width);
alert("Was grid resized ?");
}
}
}, "progButtonNode").startup();
});
</script>
</head>
<body class="claro">
<div id="parentDiv">
<div id="gridDiv"></div>
</div>
<button id="progButtonNode" type="button"></button>
<div id="result1"></div>
</body>
<script language="javascript">
document.getElementById("parentDiv").style.height = "200px";
document.getElementById("parentDiv").style.width = "200px";
document.getElementById("parentDiv").style.backgroundColor = "blue";
</script>
</html>
Thanks,
CWLO.
回答1:
DataGrid caches the size of its parent content box when it's initially rendered and it won't automatically detect changes, so give the grid a size:
grid.resize({ w: 400, h: 400 });
If you want to be a bit more general:
var parentDiv = dom.byId('parentDiv');
grid.resize({ w: parentDiv.clientWidth, h: parentDiv.clientHeight });
Erasing the cached value by setting grid._parentContentBoxHeight
to null
and then calling grid.resize()
will also work, but that's pretty hacky.
来源:https://stackoverflow.com/questions/31819910/dojo-datagrid-height-resize-not-working