When I minimize a window in qooxdoo, where does it go? Is there a way to get it to stick to the bottom of the main application window?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no built-in support for this, you need to roll your own. Basically, subclass window.Window to overwrite the iconify action to simply hide the window. Then, you need a container (e.g. off of window.Desktop) that represents the iconified window (e.g. with a small image), and displays it again when the icon is clicked. [1]