[qooxdoo-devel] FW: [Bug 6417] Tab order issue on widgets without property tabIndex set

2013-10-31 Thread Jeroen Smit
Hi, Can you confirm that I need to re-apply my workaround mentioned in the bug below to the new 3.0.1 code? Thanks in advance, Jeroen -Original Message- From: bugzilla-dae...@qooxdoo.org [mailto:bugzilla-dae...@qooxdoo.org] Sent: vrijdag 20 juli 2012 13:17 To: Jeroen Smit Subject: [B

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-31 Thread Fritz Zaucker
You could also replace all tabs in your source code with spaces in your editor. Emacs has the "untabify" function for this. Cheers, Fritz On Thu, 31 Oct 2013, Dietrich Streifert wrote: > Yes! Thank you for the hint. > > But that would change to much of my coding style. > > Meanwhile I've managed

Re: [qooxdoo-devel] Issue with Grow layout icw column width and padding

2013-10-31 Thread Christian Hagendorn
Hi Jeroen, it looks like a bug for me. Could you please open a bug report. Thanks, Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Issue-with-Grow-layout-icw-column-width-and-padding-tp7584875p7584876.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-31 Thread thron7
On 10/31/2013 01:47 PM, Dietrich Streifert wrote: > Yes! Thank you for the hint. > > But that would change to much of my coding style. Really?! Fix shouldn't be so invasive, only fixing line endings, tabs-to-spaces etc. ... > > Meanwhile I've managed to master the output of jshint by using a con

[qooxdoo-devel] Issue with Grow layout icw column width and padding

2013-10-31 Thread Jeroen Smit
Hi, In version 1.4.1. I was showing a control with a buttonbar on the right that would become "visible" when the mouse got close and was hidden when the mouse moved away. In 3.0.1 I am not able to use the same code because the column in which I added the buttons is not hidden completely anymore

Re: [qooxdoo-devel] generate.py lint and dangling comma in array initialization

2013-10-31 Thread Dietrich Streifert
Yes! Thank you for the hint. But that would change to much of my coding style. Meanwhile I've managed to master the output of jshint by using a config file (json.lint) like this: { "globals": { "qx": false }, "es3" : true, "-W099": true } You have to pass this file to jshint lik

Re: [qooxdoo-devel] Issue with textColor of a qx.ui.menu.Button

2013-10-31 Thread Jeroen Smit
Nice! Thank you :-) Best regards, Jeroen -Original Message- From: Christian Hagendorn [mailto:christian.hagend...@1und1.de] Sent: donderdag 31 oktober 2013 13:19 To: qooxdoo-devel@lists.sourceforge.net Subject: Re: [qooxdoo-devel] Issue with textColor of a qx.ui.menu.Button Hi Jeroen,

Re: [qooxdoo-devel] How to destroy the timer of a web page before/after leaving this page

2013-10-31 Thread Daniel Wagner
Hi, you can use the PageVisibility API to be notified when the user switches to another tab: http://demo.qooxdoo.org/current/apiviewer/index.html#qx.bom.PageVisibility Just keep in mind that old versions of Internet Explorer don't support it: http://caniuse.com/#feat=pagevisibility Regards,

Re: [qooxdoo-devel] Issue with textColor of a qx.ui.menu.Button

2013-10-31 Thread Christian Hagendorn
Hi Jeroen, you can override the existing color values from the color theme with the values from your server. But you have to reset the color theme to trigger your changes: http://tinyurl.com/oalb28o Cheers, Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Issue-with-te

[qooxdoo-devel] How to destroy the timer of a web page before/after leaving this page

2013-10-31 Thread Đăng Khoa Trần Quang
Hi Qooxdoo Team, I assume there are two web pages (A and B) on my server. On page A, I set a timer that will be activated when I access with interval of time (for ex: 1 minute). I can turn on/off that timer as long as I’m still on page A, the problem is if the timer is enabled on Page A and then

Re: [qooxdoo-devel] Issue with textColor of a qx.ui.menu.Button

2013-10-31 Thread Jeroen Smit
Hi Chris, Thank you for your example. Unfortunately I cannot use that because we want all our text colors in the application to be different from the Qx default but this is decided at runtime so I cannot used decorators then since we need to call setTextColor with the color the server determin

Re: [qooxdoo-devel] Issue with textColor of a qx.ui.menu.Button

2013-10-31 Thread Christian Hagendorn
Hi Jeroen, you can't set the text color by code, because this value will alway be used and the appearance value will be ignored. Furthermore you can't control the text color with the widget state, because the state is only used from the appearance. But you can set a custom appearance id by code.

[qooxdoo-devel] Răspuns: Răspuns: Răspuns: How can I add a table to a mobile page?

2013-10-31 Thread tedi tedi
Thanks again. This is the way it looks with my list renderer: http://tinyurl.com/nk5rxg9 Thanks ! :) În Joi, 31 Octombrie 2013 12:15:10, Christopher Zündorf a scris: Hi, as I see, you want to interact a lot with your table. The table solution may be better if you just want to displa

Re: [qooxdoo-devel] Răspuns: Răspuns: How can I add a table to a mobile page?

2013-10-31 Thread Christopher Zündorf
Hi, as I see, you want to interact a lot with your table. The table solution may be better if you just want to display data. The List Renderer way might be much better for you. I will create a little example List Renderer, and attach it to the Stack Overflow example mentioned a few mails ago.

Re: [qooxdoo-devel] Issue with textColor of a qx.ui.menu.Button

2013-10-31 Thread Jeroen Smit
Hi Chris. That is how my current code does the check but this doesn't work if the textColor has already been set to a default (we don't want the default black). In your code example you can see that when e.g. adding the statement undoButton.setTextColor("#00FF00"); the button remains green whe

[qooxdoo-devel] Răspuns: Răspuns: How can I add a table to a mobile page?

2013-10-31 Thread tedi tedi
I used the qx.mobile.embed.Html widget and i generated the html code to create my table: this is the table: idsignsymbolnamedescriptionvalueToMainUnit6€EUREuroEuropean currency4.44149abcd6 I added onClick='javascript:qx.core.Init.getApplication().globalData.pages[2].setFormData({"id":9,"userId"

Re: [qooxdoo-devel] Issue with textColor of a qx.ui.menu.Button

2013-10-31 Thread Christian Hagendorn
Hi Jeroen, it looks like the key you are looking for is "selected" and not "hovered": http://tinyurl.com/p8tqbcl Cheers, Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Issue-with-textColor-of-a-qx-ui-menu-Button-tp7584834p7584863.html Sent from the qooxdoo mailing lis