Hi,

for the splitpane, you can use the "flex" property to achieve 
essentially the same result:

var sp = new qx.ui.splitpane.Pane("vertical");
this.getRoot().add(sp, {edge : 0});
var w1 = new qx.ui.core.Widget();
sp.add(w1, 7);
var w2 = new qx.ui.core.Widget();
sp.add(w2, 3);

Does this solve your problem?


Regards,
Daniel

hkalyoncu schrieb:
> do i have to know initial height to give percentage heights to both parts of
> vertical splitpane?
> 
> i want to divide the whole browser canvas area with a splitpane like this:
> 
> -------------------------------------- 
> 
>                 70% height
> 
> 
> 
> --------verticalsplitter------------
> 
>                 30% height
> 
> ---------------------------------------
> 
> But when i set each part with percentage heights it doesnt work
> 


------------------------------------------------------------------------------

_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to