我正在定制ArcGIS Online平台上的小部件。该小部件基本上读取csv文件并将其显示在表上。问题是我拖动了调整大小处理程序节点(红色圆圈),网格未使用其父容器调整大小。
我尝试使用dojo.connect,但是不确定是否定位了正确的元素。
require(["dojo/dom"], function(dom){
var grid = dom.byId("widgets_CDEUpdate_Widget_20_panel")
function resizeGrid() {
console.log("heightcontainer")
}
dojo.addOnLoad(function () {
dojo.connect(grid, "onresize", resizeGrid);
});
The grid doesn't resize when the parent container resized (widget)
请帮助。预先感谢。
Chepez