Hello,
I need help on resizing datagrid as shown below. I need the grid to resize on its own when the parent container (widget) is resized.
I've tried dojo.connect to connect to window which works. But when I changed to mygrid, it failed.
function resizeGrid() {
console.log("heightcontainer:" )
}
dojo.add"color: #d4d4d4;">(function() {
dojo.connect(mygrid, "", resizeGrid);
});
Thanks in advance
Chepez