[qooxdoo-devel] Qooxdoo Seems To Need More Exposure...

2012-01-31 Thread aditya siram
I find it surprising that Qooxdoo is not on lists like this ( http://codebrief.com/2012/01/the-top-10-javascript-mvc-frameworks-reviewed/). I wonder if it's just less popular in the US. -deech -- Keep Your Developer Skills

Re: [qooxdoo-devel] Questions about Rpc(php)!!!

2012-01-31 Thread linucos
Hi to All,I find a really good backend of JsonRpc of PHP.That is "jsonrpc" library in PHP framework "Codeigniter".It is a third-party library for Codeigniter.Try it. Meanwhile RpcPhp is good enough when you do NOT use a framework. -- View this message in context: http://qooxdoo.678.n2.na

Re: [qooxdoo-devel] Question about include/exclude !

2012-01-31 Thread linucos
Buy the way, i mean even "parts" i define did NOT use the "class" or "widget". I use it in "qx.io.ScriptLoader.load"! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Question-about-include-exclude-tp7241726p7241737.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] Question about include/exclude !

2012-01-31 Thread linucos
Hi to All, I got a questions: Can i include a widget "qx.ui.container.SlideBar" or a own-write class "Myapp.Test" to the Application while i did NOT use it in the Application code? But i will use it. Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Question-ab

[qooxdoo-devel] Button Text should no more centered vertical

2012-01-31 Thread Marc
Hey Guys, I created some Buttons. I dont want that the text is centered vertical or horizontal. I though that this should be no problem, but I was wrong. The API said for the attribute "center": "Whether the content should be rendered centrally when to much space is available. *Affects both axi

Re: [qooxdoo-devel] How does inheritance actually work in QooxDoo?

2012-01-31 Thread Simon White
Hi The problem I encountered that raised this question was that I created a sub class of the Json store and added an array member called changedItems and set it to an empty array. I expected each instance of this subclass to have its own copy of the array. However I found that this array onl

Re: [qooxdoo-devel] questions about qx.bom.AnimationJS ...

2012-01-31 Thread benco
MartinWittemann wrote > > Do you think its possible to put the queue concept on top of the new > layer? > Sure, but I should first have a deeper look at the current code to confirm it's feasible in an easy way. I'll check it next week-end. But if you goal is to keep it as simple as possible...

Re: [qooxdoo-devel] Qooxdoo Framework and a pythonic way of installation

2012-01-31 Thread thron7
Stephan, I'll be looking into this tomorrow. There once was a Debian package for qooxdoo, but this was several qooxdoo releases ago, and I don't know in what shape this deb package is currently. I will try to dig up the old email conversations. I'm not sure it was packaged up like a Python p

[qooxdoo-devel] Qooxdoo Framework and a pythonic way of installation

2012-01-31 Thread Stephan Adig
Good Evening, as you might have heard, I'm working on DC² (DataCenter Deployment Control) and right now I'm able to push this piece of Software into Ubuntu and Debian. I still have one issue with that, I'm not able to package the Qooxdoo build framework, because of the non pythonic way of using i

[qooxdoo-devel] Regarding scrollbars

2012-01-31 Thread Stefan Andersson
Scrollbars are not adapted for multilingual applications for all widgets in qooxdoo. Not even all browsers apply necessary functionality for it. Nevertheless, we have done it but would like to have a check with Martin W. We believe that a widget shall use the native scrollbar if available. If n

Re: [qooxdoo-devel] Two or more constructors

2012-01-31 Thread slah
Great. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Two-or-more-constructors-tp7219626p7239766.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Keep Your Developer Skills Current wit

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-31 Thread thron7
On 01/31/2012 01:56 PM, Simon White wrote: > Hi > > I have not opened a bug. I am not sure how to describe it other than to > say the screen layout is a mess. Well, you have screenshots which will go a long way :-). Also, it will be important how to reproduce the issue. If you can strip your

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-31 Thread Simon White
Hi I have not opened a bug. I am not sure how to describe it other than to say the screen layout is a mess. Simon On 31/01/2012 5:44 AM, Tino Butz wrote: > Hi Simon, > > Did you make any progress on that problem? Have you opened a bug? > > Tino > > Am 26.01.2012 um 17:27 schrieb Simon White:

Re: [qooxdoo-devel] Two or more constructors

2012-01-31 Thread thron7
Unfortunately, JavaScript has no signature-based dispatch, or multi-clauses with pattern matching :-). But as another option, you could use your constructor as a dispatch for more specific setup methods. Also, rather than listing all the possible arguments, you can just use the built-in 'argume

Re: [qooxdoo-devel] Two or more constructors

2012-01-31 Thread slah
Hello, I think you can solve this case by having only one constructor (the 2nd one) with all possible arguments you may need. and then if you want to pass only one arg, this will be ok but other arguments will stay null. constructor(id, arg1, arg2, ..., argn){ if (arg1) setProp1(arg1); if (arg2)

Re: [qooxdoo-devel] Two or more constructors

2012-01-31 Thread Tino Butz
Stefan opened a bug for that already: http://bugzilla.qooxdoo.org/show_bug.cgi?id=6073 Thanks! Am 31.01.2012 um 11:54 schrieb thron7: I remember faintly this issue came up before, so there might be already a bug for duplicate keys in class maps. T. On 01/31/2012 11:49 AM, Tino Butz wrote: A

Re: [qooxdoo-devel] Two or more constructors

2012-01-31 Thread thron7
I remember faintly this issue came up before, so there might be already a bug for duplicate keys in class maps. T. On 01/31/2012 11:49 AM, Tino Butz wrote: Am 24.01.2012 um 11:15 schrieb Stefan Andersson: generator message... an error for a second constructor and a warning for a second othe

Re: [qooxdoo-devel] mobile local storage

2012-01-31 Thread Tino Butz
Hi Alex, Yes, that technique will work with PhoneGap! But you shouldn't store plain passwords. You should at least store a token after login (unique generated by the service), that is only valid for that phone and use this token for login the next time. Would be the easiest solution, when you d

Re: [qooxdoo-devel] Two or more constructors

2012-01-31 Thread Tino Butz
Am 24.01.2012 um 11:15 schrieb Stefan Andersson: generator message... an error for a second constructor and a warning for a second other function created would be useful for a developer! Good idea - can you please open a bug for that? ---

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-31 Thread Tino Butz
Hi Simon, Did you make any progress on that problem? Have you opened a bug? Tino Am 26.01.2012 um 17:27 schrieb Simon White: Hi I have attached a screen shot of Chrome and IE9 so you can see the problems. Simon On 25/01/2012 4:15 PM, Simon White wrote: Hi I have been building a RIA and usi

Re: [qooxdoo-devel] How does inheritance actually work in QooxDoo?

2012-01-31 Thread Tino Butz
Hi Simon, We do normal JS inheritance - no magic here ;) Perhaps you can have a look on this great slides, to get a better understanding of JS / prototypes / inheritance: http://www.slideshare.net/Sampetruda/advanced-javascript-closures-prototypes-and-inheritance Tino Am 27.01.2012 um 14:31

Re: [qooxdoo-devel] error handling

2012-01-31 Thread Tino Butz
Hi Tobias, In my opinion, exception handling within the qx core should be avoided. All exception handling in the core should be there for a reason and well documented. When you find an exception handling, were documentation is missing (why we do it) or you think it shouldn't be there, please op

Re: [qooxdoo-devel] Call for an opinion

2012-01-31 Thread Tino Butz
Hi Stefan, Did you miss our FAQ page for that? http://qooxdoo.org/documentation/general/faq#are_visual_gui_builders_available There are some great efforts in the community. Perhaps you can contribute. Tino Am 30.01.2012 um 15:28 schrieb Burak Arslan: > On 01/30/12 15:01, Stefan Andersson wr

Re: [qooxdoo-devel] Best Practice Recommendation when JSON Store returns no Data.

2012-01-31 Thread Tino Butz
Hi Simon, I do not know, if there is any "best practice", but I would bind the JSON Store to a property of the view as well. In the apply method of the property I would check if the store is empty and show an empty overlay and exclude the list. But it is up to you. Tino Am 30.01.2012 um 19:32

Re: [qooxdoo-devel] Seeking for a Qooxdoo freelancer.

2012-01-31 Thread jsgeeks
Hey there, we are UK based IT consulting company with projects across Europe and USA (Silicon Valley) We are high experienced JavaScript developers in web, mobile and server-side areas (in example: pure DOM, YUI, Qooxdoo, PhoneGap, Node.JS, RingoJS, V8CGI, Prototype, jQuery,MongoDB). We follow

Re: [qooxdoo-devel] Support Options for Qooxdoo

2012-01-31 Thread jsgeeks
Hey there, we are UK based IT consulting company with projects across Europe and USA (Silicon Valley) We are high experienced JavaScript developers in web, mobile and server-side areas (in example: pure DOM, YUI, Qooxdoo, PhoneGap, Node.JS, RingoJS, V8CGI, Prototype, jQuery,MongoDB). We follow

Re: [qooxdoo-devel] Freelancer - Fulltime Job

2012-01-31 Thread jsgeeks
Hey there, we are UK based IT consulting company with projects across Europe and USA (Silicon Valley) We are high experienced JavaScript developers in web, mobile and server-side areas (in example: pure DOM, YUI, Qooxdoo, PhoneGap, Node.JS, RingoJS, V8CGI, Prototype, jQuery,MongoDB). We follow

Re: [qooxdoo-devel] Possible qooxdoo work

2012-01-31 Thread jsgeeks
Hey there, we are UK based IT consulting company with projects across Europe and USA (Silicon Valley) We are high experienced JavaScript developers in web, mobile and server-side areas (in example: pure DOM, YUI, Qooxdoo, PhoneGap, Node.JS, RingoJS, V8CGI, Prototype, jQuery,MongoDB). We follow

Re: [qooxdoo-devel] anyone working on integrating a canvas plotting library ?

2012-01-31 Thread jsgeeks
Hey there, we are UK based IT consulting company with projects across Europe and USA (Silicon Valley) We are high experienced JavaScript developers in web, mobile and server-side areas (in example: pure DOM, YUI, Qooxdoo, PhoneGap, Node.JS, RingoJS, V8CGI, Prototype, jQuery,MongoDB). We follow

Re: [qooxdoo-devel] Freelancer - Fulltime Job

2012-01-31 Thread jsgeeks
Hey there, we are UK based IT consulting company with projects across Europe and USA (Silicon Valley) We are high experienced JavaScript developers in web, mobile and server-side areas (in example: pure DOM, YUI, Qooxdoo, PhoneGap, Node.JS, RingoJS, V8CGI, Prototype, jQuery,MongoDB). We follow

Re: [qooxdoo-devel] Job Offer: qooxdoo Freelancing (on-site)

2012-01-31 Thread jsgeeks
Hey there, we are UK based IT consulting company with projects across Europe and USA (Silicon Valley) We are high experienced JavaScript developers in web, mobile and server-side areas (in example: pure DOM, YUI, Qooxdoo, PhoneGap, Node.JS, RingoJS, V8CGI, Prototype, jQuery,MongoDB). We follow