|
View:
New views
19 Messages
—
Rating Filter:
Alert me
|
|
|
|
|
|
Re: Internalization for date Chooser
Sure there is. Take a look at this demo:
http://demo.qooxdoo.org/current/demobrowser/#showcase~Localization.html
T. monika.falk@... wrote: Hi Everyone I am using date chooser in my app and I wonder if there is a way to use internalization on it. I mean to have months names translated according to the chosen locale. Is this possible? S pozdravem / Best regards, Monika Falk, Software Specialist Tieto -----Original Message----- From: qooxdoo-devel-request@... [qooxdoo-devel-request@...] Sent: Saturday, October 24, 2009 6:24 PM To: qooxdoo-devel@... Subject: qooxdoo-devel Digest, Vol 41, Issue 144 Send qooxdoo-devel mailing list submissions to qooxdoo-devel@... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel or, via email, send a message with subject or body 'help' to qooxdoo-devel-request@... You can reach the person managing the list at qooxdoo-devel-owner@... When replying, please edit your Subject line so it is more specific than "Re: Contents of qooxdoo-devel digest..." Today's Topics: 1. close table cell editor when table loses focus (skar) 2. Re: reference objects outside handler (Derrell Lipman) 3. Re: unexpected behavior when using qooxdoo json-rpc and web2py, cross domain issues (Derrell Lipman) 4. Re: close table cell editor when table loses focus (Derrell Lipman) 5. Re: unexpected behavior when using qooxdoo json-rpc and web2py, cross domain issues (Gene Amtower) 6. Re: reference objects outside handler (JB) ---------------------------------------------------------------------- Message: 1 Date: Sat, 24 Oct 2009 18:48:46 +0530 From: skar skar.karthikeyan@... Subject: [qooxdoo-devel] close table cell editor when table loses focus To: qooxdoo Development qooxdoo-devel@... Message-ID: 4AE2FEB6.3010809@... Content-Type: text/plain; charset=ISO-8859-1; format=flowed Hi, I want to close the table's cell editor, when the user clicks in any of the search text fields or clicks on any of the buttons in a buttonbar. I tried adding a focusout listener in which I called table.stopEditing(). However, when I double click on a cell to start the editor, that itself sends a focusout and so the editor closes before I can edit the cell. Or should I add a focus listener for all other focusable widgets like search text fields and buttons where I check if the table isEditing() and the stop the editing there? cheers, skar. -- -- The life so short, the craft so long to learn. ------------------------------ Message: 2 Date: Sat, 24 Oct 2009 09:40:16 -0400 From: Derrell Lipman derrell.lipman@... Subject: Re: [qooxdoo-devel] reference objects outside handler To: qooxdoo Development qooxdoo-devel@... Message-ID: cdc91d420910240640p3a5eefbpe14b6bfc2e5e90c8@... Content-Type: text/plain; charset="iso-8859-1" On Sat, Oct 24, 2009 at 03:10, JB general@... wrote: ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
|
|
|
Re: Internalization for date Chooser
Monika,
I've tried http://demo.qooxdoo.org/0.8.2/demobrowser/#showcase~Localization.html, and it's indeed not working properly. I can't remember if it was an issue in the demo or the underlying framework, the release notes for 0.8.3 might say something about it. Can you switch to 0.8.3? Also, provided you get it to work somehow, the date chooser widget will use the built-in CLDR data. I don't think you will be able to provide your own translations, if this is what you were thinking of. T. monika.falk@... wrote: Hi Thron Thanks for the link, I run similar app in play ground, however I am still having problems with having date chooser translated in my application. I am using qooxdoo qooxdoo-0.8.2-sdk, should it work with that version of qooxdoo as well? S pozdravem / Best regards, Monika Falk, Software Specialist Tieto Message: 3 Date: Mon, 26 Oct 2009 09:55:15 +0100 From: thron7 thomas.herchenroeder@... Subject: Re: [qooxdoo-devel] Internalization for date Chooser To: qooxdoo Development qooxdoo-devel@... Message-ID: 4AE563F3.4050504@... Content-Type: text/plain; charset="iso-8859-1" Sure there is. Take a look at this demo: http://demo.qooxdoo.org/current/demobrowser/#showcase~Localization.html T. monika.falk@... wrote: ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
|
|
|
Re: Internalization for date ChooserHi Minika,
I tested this code with the playground from 0.8.2 [1] and it seems to me that the switch is working: var dateChooser = new qx.ui.control.DateChooser(); this.getRoot().add(dateChooser, {left:20, top:20}); qx.locale.Manager.getInstance().setLocale("de"); Could you please send your code snipped? Thanks, Chris [1] http://demo.qooxdoo.org/0.8.2/playground/index.html monika.falk@... schrieb: > > Hi Thron > > I would rather not do the switch to the latest version as we are very close to the release and not have time to test whether all the features are in places after upgrading the framework. > Any chances that I can just update/extend the daychooser? > > S pozdravem / Best regards, > > Monika Falk, Software Specialist > > Message: 6 > Date: Mon, 26 Oct 2009 15:23:54 +0100 > From: thron7 <thomas.herchenroeder@...> > Subject: Re: [qooxdoo-devel] Internalization for date Chooser > To: qooxdoo Development <qooxdoo-devel@...> > Message-ID: <4AE5B0FA.3090403@...> > Content-Type: text/plain; charset="iso-8859-1" > > Monika, > > I've tried > http://demo.qooxdoo.org/0.8.2/demobrowser/#showcase~Localization.html, > and it's indeed not working properly. I can't remember if it was an > issue in the demo or the underlying framework, the release notes for > 0.8.3 might say something about it. Can you switch to 0.8.3? > > Also, provided you get it to work somehow, the date chooser widget will > use the built-in CLDR data. I don't think you will be able to provide > your own translations, if this is what you were thinking of. > > T. > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > qooxdoo-devel mailing list > qooxdoo-devel@... > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > -- Christian Schmidt Software Entwickler 1&1 Internet AG - Web Technologies Ernst-Frey-Straße 9 · DE-76135 Karlsruhe schmidt.christian@... Amtsgericht Montabaur / HRB 6484 Vorstände: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas Gottschlich, Robert Hoffmann, Markus Huhn, Hans-Henning Kettler, Dr. Oliver Mauss, Jan Oetjen Aufsichtsratsvorsitzender: Michael Scheeren ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
Re: Internalization for date ChooserChristian Schmidt wrote: Hi Minika, I tested this code with the playground from 0.8.2 [1] and it seems to me that the switch is working: Confirmed. I get the same result. T.
------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
|
|
|
Re: Internalization for date ChooserMonika,
monika.falk@... wrote: > Hi > > Here is code snipped > > > var dateChooser = new qx.ui.control.DateChooser(); > this.__informationPane.add(dateChooser); > this.__userNameLabeltest = new qx.ui.basic.Label(this.tr("Globals:0214")); > this.__informationPane.add(this.__userNameLabeltest); > qx.locale.Manager.getInstance().setLocale("no"); > > And the result is that the label is translated (to "versjon") and the calendar is not. (I attached the screenshot). > I also can confirm that in http://demo.qooxdoo.org/0.8.2/playground/index.html playground it is working fine, No, actually it's not. If I paste the essentials of your code snippet into Playground the locale for the DateChooser is *not* switched. This appears to be a bug in the generator, as the CLDR data for "no" is not picked up correctly. I opened a bug for it: http://bugzilla.qooxdoo.org/show_bug.cgi?id=2997 Meanwhile, you could try to use the locale "nb" in place of "no". This should work better. Please report back. > however in > Showcase http://demo.qooxdoo.org/0.8.2/demobrowser/#showcase~Localization.html I cannot see anything translated. I told you before that this demo is broken. T. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
|
|
|
Re: Internalization for date Choosermonika.falk@... wrote: Hi Thron I tried this code in playground (http://demo.qooxdoo.org/0.8.2/playground/index.html) var dateChooser = new qx.ui.control.DateChooser(); this.getRoot().add(dateChooser); qx.locale.Manager.getInstance().setLocale("no"); With locale: "no", "nb", "fr" and "de" and it looks like this is only working for "de". Look, you cannot test this in the online Playground, as the online version is only compiled with ["en", "de"] locales. If you want to test in Playground, you have use the Playground of your local SDK installation, edit the config.json and set the LOCALE macro to the desired locales. Then re-compile Playground and open it in the browser. Then your snippet will make sense. T. S pozdravem / Best regards, Monika Falk, Software Specialist Tieto Message: 4 Date: Tue, 27 Oct 2009 16:08:29 +0100 From: thron7 thomas.herchenroeder@... Subject: Re: [qooxdoo-devel] Internalization for date Chooser To: qooxdoo Development qooxdoo-devel@... Message-ID: 4AE70CED.2020806@... Content-Type: text/plain; charset=ISO-8859-1; format=flowed Monika, monika.falk@... wrote: ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
|
|
|
Re: Internalization for date Choosermonika.falk@... wrote: > Hi Thron > > Sorry, I did not know that online version is compiled only with two locales. I tried to use "nb" instead of "no" and still have no translation for date chooser. > So what did you do? T. > ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
|
|
|
Re: Internalization for date Choosermonika.falk@... wrote: So far I have no idea how to solve this issue. This is no answer to my question. You wrote you 'tried to use "nb" instead of "no"'. How did you do that? Did you follow my steps in re-creating a local Playground? T. S pozdravem / Best regards, Monika Falk, Software Specialist Tieto Message: 4 Date: Thu, 29 Oct 2009 10:55:16 +0100 From: thron7 thomas.herchenroeder@... Subject: Re: [qooxdoo-devel] Internalization for date Chooser To: qooxdoo Development qooxdoo-devel@... Message-ID: 4AE96684.2050905@... Content-Type: text/plain; charset=ISO-8859-1; format=flowed monika.falk@... wrote: ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
|
|
|
Re: Internalization for date Chooser
So what is the value of your config.json's LOCALE macro, then?
T. monika.falk@... wrote: No, I tried it in my application. S pozdravem / Best regards, Monika Falk, Software Specialist Tieto ------------------------------ Message: 3 Date: Fri, 30 Oct 2009 09:25:17 +0100 From: thron7 thomas.herchenroeder@... Subject: Re: [qooxdoo-devel] Internalization for date Chooser To: qooxdoo Development qooxdoo-devel@... Message-ID: 4AEAA2ED.8040507@... Content-Type: text/plain; charset="iso-8859-1" monika.falk@... wrote: ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
|
|
|
|
|
Re: Internalization for date Chooser>
> Hi Thron > > You were right, obviously I did not changed config.json file to work with > "nb" locale. After changing it, the date chooser is switched to Norwegian > language. > Thanks for your help and I apologize for the confusion. You're welcome. Glad you could solve it :). T. ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@... https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel |
| Free embeddable forum powered by Nabble | Forum Help |