Hello,

"showMinimize" is a property of qx.ui.window.Window which you can set by 
  the method setShowMinimize(boolean b) and it is used to define if the 
window's minimize button should be shown or not.

Oliver

lycovian wrote:
> With the most recent svn (4000) checkout of Qxd there seems to be a problem
> with the showMinimize/Maximize/Close calls.  If any of these calls is made
> then the window will not show.  Possibly a bug.  I'm new to this slightly so
> let me know where I should post this if not here.
> 
> Here is a small example of the problem.
> 
>   // MAIN
>   qx.core.Init.getInstance().defineMain(function()
>   {
>     var d = qx.ui.core.ClientDocument.getInstance();
>     var widget = new qx.ui.window.Window("Test");
>     widget.setSpace(20, 200, 40, 400);
>     
>     /*
>       If any of these are uncommented the Window will not show
>      */
>     //widget.showMinimize(false);
>     //widget.showMaximize(false);
>     //widget.showClose(false);
> 
>     d.add(widget);
>     widget.show();
> 
>   });
> 
> 


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to