Re: [qooxdoo-devel] How to make tab Widget size dynamic?

2012-02-29 Thread Scott Chapman
I changed my TabView.js by adding line 7 and removed the setting of the size directly on the widget. Now my map is 50 pixels high and doesn't change. What am I missing? qx.Class.define("kiosk_portal.TabView", { extend : qx.ui.tabview.TabView, construct : function(label) { this.base

Re: [qooxdoo-devel] Window (checking status)

2012-02-29 Thread Ivan Montilla
Now I can see things more clearly! Many thanks! I hope I can help you a lot as you did today to me :-) -Original Message- From: thron7 Date: Wed, 29 Feb 2012 19:44:12 To: qooxdoo Development Reply-To: qooxdoo Development Subject: Re: [qooxdoo-devel] Window (checking status) Ok, why don

Re: [qooxdoo-devel] Window (checking status)

2012-02-29 Thread thron7
Ok, why don't you try the sample code I wrote in my previous mail?! - Modifying the code you sent: main() { // code here this.create1stWindow(); this.create2ndWindow(); // also buttons here that call to these functions // - nope! don't call the factory functions again, // but on

Re: [qooxdoo-devel] Weird bouncing-list Chrome problem with 1.6

2012-02-29 Thread John Spackman
Brilliant! That was it, thanks very much Daniel. Cheers John On 29/02/2012 16:36, "Daniel Wagner" wrote: >Hi John, > >check if Chrome's zoom level is set to anything larger than 100%. Doing >that lets me reproduce at least some of the issues you described. > >Regards, >Daniel > >On 02/29/2012

Re: [qooxdoo-devel] Weird bouncing-list Chrome problem with 1.6

2012-02-29 Thread Daniel Wagner
Hi John, check if Chrome's zoom level is set to anything larger than 100%. Doing that lets me reproduce at least some of the issues you described. Regards, Daniel On 02/29/2012 05:29 PM, John Spackman wrote: > Hi > > I have a customer who is experiencing really weird problems with Chrome > – dr

[qooxdoo-devel] Weird bouncing-list Chrome problem with 1.6

2012-02-29 Thread John Spackman
Hi I have a customer who is experiencing really weird problems with Chrome ­ drop down lists with a scroll bar bounce if he tries to scroll to the bottom of the list. When he drags the scroll bar (or uses the down arrow at the bottom of the scroll bar) and releases the mouse, it scrolls back up.

Re: [qooxdoo-devel] Window (checking status)

2012-02-29 Thread Ivan Montilla
Hello and thanks, could you please provide a more clear example? I'm very new to javascript, not to mention that your reply was good, but I got no idea how there are many ways to achieve it, mainly because I'm learning by examples (I'm still clueless to most of the stuff in the API docs, but I g

[qooxdoo-devel] DateChooser: possible to highlites several dates?

2012-02-29 Thread Alexei Vinidiktov
Hello, Is it possible to highlight an arbitraty number of dates within the chosen month in the DateChooser? For instance, so that the user can see that he has something planned for specific dates. Thanks. -- Alexei Vinidiktov

Re: [qooxdoo-devel] [UploadMgr] Error with Safari 5.0.6

2012-02-29 Thread John Spackman
Hi Matthias I've just fixed this - the demo browser won't update until the end of the week but if you checkout the latest version you should be fine. Please let me know how you get on. Regards John On 29/02/2012 09:36, "Matthias R." wrote: >Hi, >when I run the UploadMgr on http://demo.qooxdoo

Re: [qooxdoo-devel] How to set icon to browser page (favicon.ico)?

2012-02-29 Thread Tobias Oetiker
You can also set it from javascript and more: https://github.com/tommoor/tinycon cheers tobi Today Fritz Zaucker wrote: > Just specify it in the source/index.html file, e.g.: > > > > ... > > > > ... > > > On Wed, 29 Feb 2012, alexandr wrote: > > > Hi Qooxdoo Team! > > > > I need to set my own

Re: [qooxdoo-devel] How to set icon to browser page (favicon.ico)?

2012-02-29 Thread alexandr
Thanks! - Best regards, Alexandr -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-set-icon-to-browser-page-favicon-ico-tp7328930p7329014.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] How to set icon to browser page (favicon.ico)?

2012-02-29 Thread Fritz Zaucker
Just specify it in the source/index.html file, e.g.: ... ... On Wed, 29 Feb 2012, alexandr wrote: > Hi Qooxdoo Team! > > I need to set my own icon to browser's page. How can I do this? > > Thanks! > > - > Best regards, > Alexandr > -- > View this message in context: > http://qooxdoo.6

Re: [qooxdoo-devel] How to set icon to browser page (favicon.ico)?

2012-02-29 Thread slah
Hello, you can set it in the index.html of your source/build project directory. Regards -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-set-icon-to-browser-page-favicon-ico-tp7328930p7328986.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] How to set icon to browser page (favicon.ico)?

2012-02-29 Thread alexandr
Hi Qooxdoo Team! I need to set my own icon to browser's page. How can I do this? Thanks! - Best regards, Alexandr -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-set-icon-to-browser-page-favicon-ico-tp7328930p7328930.html Sent from the qooxdoo mailing list archive

[qooxdoo-devel] [UploadMgr] Error with Safari 5.0.6

2012-02-29 Thread Matthias R .
Hi, when I run the UploadMgr on http://demo.qooxdoo.org/contrib/demobrowser/, I get the following error with Safari 5.0.6: TypeError: 'undefined' is not a function (evaluating 'J.getBrowserObject().getAsBinary()') Does anyone has an idea how to solve this issue? Regards, Matthias --

Re: [qooxdoo-devel] Window (checking status)

2012-02-29 Thread thron7
The logical consequence of this is that you need to store the references to Win1 and Win2 *somewhere* where you can retrieve them in the function that handles the re-open buttons. One way to achieve this might be the application object, so e.g. in the factory functions you might do "this.Win1 =