Hi.
I have a form with container item.
{ type:"container" , name:"someContainer", labelAlign:"left", inputWidth:500, inputHeight:220, offsetTop:"20", offsetLeft:"20" }
In that container I’m placing my grid.
myGrid = new dhtmlXGridObject(myForm.getContainer("someContainer"));
I need to change grid height programatically, now I’m doing this:
myForm.setItemHeight("someContainer", 340);
myGrid.setSizes();
But this doesn’t work, any idea how can I do this?
Thanks in advance.