[qooxdoo-devel] [feature request] Theming - list item focus rect

2010-06-21 Thread Petr Kobalíček
Hi devs, I'd like to add possibility to theme focused item in list and tree widgets. Currently only 'selected' style can be applied. Should I report enhancent-bug for this? Thanks -- Best regards - Petr Kobalicek -

Re: [qooxdoo-devel] unable to get JSON store working

2010-06-21 Thread murtaza52
Will jsonp resolve it? My requirement is to have both CouchDB and the Qooxdo app running locally. I cant get another server instance running locally. -- View this message in context: http://qooxdoo.678.n2.nabble.com/unable-to-get-JSON-store-working-tp5205923p5206154.html Sent from the qooxdoo m

Re: [qooxdoo-devel] unable to get JSON store working

2010-06-21 Thread Guilherme Aiolfi
Probably because your are trying to do a cross-domain request. In other words, a request from a different domain as your app is running, or a different port (that seems to be the problem). The browser blocks these kinds of request for security reasons. The best way to work around that is to create

[qooxdoo-devel] unable to get JSON store working

2010-06-21 Thread murtaza52
Hi, I am trying to connect to a JSON source (CouchDB). I am able to run the url in the browser and I recieve valid JSON. However when I try the same url in the code below I receive a null - var url = "http://127.0.0.1:5984/pricing";; var store = new qx.data.store.Json(url); for (i=0; i<500;

Re: [qooxdoo-devel] run qooxdoo in source form

2010-06-21 Thread Petr Kobalíček
Hi, you can precompile qooxdoo classes you need. I don't know if there is other way, because qooxdoo itself needs generator to solve dependencies between classes. Personally I'm using QxBuild (precompiled qooxdoo) so I can build highly dynamic applications. BTW: This limitation was discussed in

Re: [qooxdoo-devel] run qooxdoo in source form

2010-06-21 Thread Fritz Zaucker
You only need to run ./generate.py source when you use new classes not previously part of your application. So, in short, yes and no ... ;-) ... The edit/test cycle is relatively fast, although the compiled (build) version loads a lot faster (but needs more compile time because of all the optim

Re: [qooxdoo-devel] Promote Qooxdoo on social network.

2010-06-21 Thread Greg Beaver
On 6/21/10 4:21 AM, Jean-Baptiste BRIAUD -- Novlog wrote: > Hi, > > Just to let LinkedIn users that a Qooxdoo group exists : > http://www.linkedin.com/groups?gid=112784 > > A French group (hub) on viadeo : > http://www.viadeo.com/hu03/0022ceseey2k6vu8/qooxdoo > > A Facebook group : http://www.fac

Re: [qooxdoo-devel] Twitter tutorial question

2010-06-21 Thread Greg Beaver
On 6/21/10 10:02 AM, murtaza52 wrote: > What is the meaning of the last line - 'Setting a already set value will > cancel the whole process of setting a new value' ? > potential rephrase: "If the value passed into the setter is the same as the existing value, it is ignored and no event is fired.

[qooxdoo-devel] run qooxdoo in source form

2010-06-21 Thread Sakesun Roykiattisak
Hi, Does it possible to run qooxdoo application againts the source library without compilation ? In Google Closure library, it's possible to use the library without compilation. Using "require" and "provide" functions, Closure can either build monolithic js or magically load dependent modules

Re: [qooxdoo-devel] How to use stopPropagation() and preventDefault() correctly?

2010-06-21 Thread Marta Smith
Christian, thank you for your help and for taking the time to write me some sample code. Much appreciated! Best Regards, -Marta -- ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE

Re: [qooxdoo-devel] Twitter tutorial question

2010-06-21 Thread murtaza52
Thanks Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Twitter-tutorial-question-tp5204625p5205291.html Sent from the qooxdoo mailing list archive at Nabble.com. -- ThinkGeek and WIRED's GeekDad

Re: [qooxdoo-devel] Twitter tutorial question

2010-06-21 Thread Christian Hagendorn
Hi Murtaza, with process is meant the property process. For example when you define a property which fires an event and/or calls a apply method (This depends on your property declaration). Then the event and/or apply method is only fired/called when the value really change and not on each setXX

Re: [qooxdoo-devel] Twitter tutorial question

2010-06-21 Thread murtaza52
(The formatting didnt come out proper thus reposting) The text below is from the 1.2 manual twitter tutorial - textarea.addListener("input", function(e) { var value = e.getData(); postButton.setEnabled(value.length < 140 && value.length > 0); }, this); The event handler has onl

[qooxdoo-devel] Twitter tutorial question

2010-06-21 Thread murtaza52
The text below is from the 1.2 manual twitter tutorial - textarea.addListener("input", function(e) { var value = e.getData(); postButton.setEnabled(value.length < 140 && value.length > 0); }, this); The event handler has only two rows. The first gets the changed text of the text

Re: [qooxdoo-devel] [Feature request] Tree - icon and open-icon

2010-06-21 Thread Petr Kobalíček
Hi Martin, I'm sure this is not only for my application, I just realized that current API-design is limiting me. Problem is that theming is very static. I don't know why I have to make new theme (or patch existing theme) to provide new icon for opened tree item. If there is possibility to set nor

Re: [qooxdoo-devel] Qooxdo intellisense/code assist

2010-06-21 Thread Daniel Wagner
murtaza52 schrieb: > Daniel, > > Just wanted to make sure. > > I have autocomplete partly. Say the following code snippet - > > var reloadButton = new qx.ui.toolbar.Button("Reload"); > > reloadButton.addListener("execute", function() { > this.fireEvent("reload"); > }, this); > > The

Re: [qooxdoo-devel] Qooxdo intellisense/code assist

2010-06-21 Thread murtaza52
Daniel, Just wanted to make sure. I have autocomplete partly. Say the following code snippet - var reloadButton = new qx.ui.toolbar.Button("Reload"); reloadButton.addListener("execute", function() { this.fireEvent("reload"); }, this); The codeassist works for reloadButton and I can

Re: [qooxdoo-devel] Qooxdo intellisense/code assist

2010-06-21 Thread murtaza52
Hello Daniel, Thanks got it working! Murtaza -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdo-intellisense-code-assist-tp5203807p5204001.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] playground remote table (Re: qx.ui.table.model.Remote::reloadData())

2010-06-21 Thread Tobias Oetiker
Today Daniel Wagner wrote: > Hi Tobi, > > Tobias Oetiker schrieb: > > A playground remote table example might make the research simpler > > ... > > > > http://tinyurl.com/3ypv798 > > > > ps: maybe a nice addition to the demo browser OR the playground ... > > > > Absolutely, I'll add it to the demo

Re: [qooxdoo-devel] playground remote table (Re: qx.ui.table.model.Remote::reloadData())

2010-06-21 Thread Daniel Wagner
Hi Tobi, Tobias Oetiker schrieb: > A playground remote table example might make the research simpler > ... > > http://tinyurl.com/3ypv798 > > ps: maybe a nice addition to the demo browser OR the playground ... > Absolutely, I'll add it to the demo browser right away. Is it OK if I list your n

Re: [qooxdoo-devel] Qooxdo intellisense/code assist

2010-06-21 Thread Daniel Wagner
Hi Murtaza, I use Spket 1.6.18 with Eclipse, autocomplete works fine. I just created a profile for qooxdoo in the Spket options and pointed it to the qooxdoo-1.1-sdk directory. The only downside is the outline view doesn't support qooxdoo classes :( Regards, Daniel murtaza52 schrieb: > Hi, >

Re: [qooxdoo-devel] Qooxdo intellisense/code assist

2010-06-21 Thread Christian Hagendorn
Hi Murtaza, I use only Aptana with out the Spket plug-in, so I can't help you with the Spket details. But you can try to ask the Spket forum for help: http://forums.spket.com/ Cheers, Chris Am 21.06.2010 13:00, schrieb murtaza52: > Hi, > > I was trying to make Qooxdoo 1.1 work in Aptana. I inst

Re: [qooxdoo-devel] Selenium : tabviewPage locators

2010-06-21 Thread Daniel Wagner
Hi Olivier, Olivier ZORO-BI schrieb: > Hi, > Last time I asked how to access taviewPages with qooxdoo locators. > I was answered that >> qxh=qx.ui.tabview.TabView/child[0] > and >> qxh=qx.ui.tabview.TabView/child[3]/child[0] > > returned the same but have never been able to use the first one.

[qooxdoo-devel] Selenium : tabviewPage locators

2010-06-21 Thread Olivier ZORO-BI
Hi, Last time I asked how to access taviewPages with qooxdoo locators. I was answered that > qxh=qx.ui.tabview.TabView/child[0] and > qxh=qx.ui.tabview.TabView/child[3]/child[0] returned the same but have never been able to use the first one. The fact is it's dependant of the number of taviewP

[qooxdoo-devel] Qooxdo intellisense/code assist

2010-06-21 Thread murtaza52
Hi, I was trying to make Qooxdoo 1.1 work in Aptana. I installed Spket plugin for Aptana, as it supported Qooxdoo 0.8. I went through the instructions it provides on its site. However I am not able to get intellisense working for Qooxdoo 1.1. Has anyone been able to get Aptana/Spket or any other

Re: [qooxdoo-devel] Promote Qooxdoo on social network.

2010-06-21 Thread Andreas Ecker
Hi JBB, added your add'tl French group to the list of available social networks on the community page: http://qooxdoo.org/community#social_networks How do you plan to build up and promote your French group at viadeo? Bye, Andreas On Mon, 2010-06-21 at 11:21 +0200, Jean-Baptiste BRIAUD -- Novl

Re: [qooxdoo-devel] Jspresso 3.5.0 introduces qooxdoo 1.1 support

2010-06-21 Thread Vincent Vandenschrick
> Does it mean if the same form is used several times with only few data > changes, the entire GUI is regenerated on server side, like for dynamic HTML > (jsp for example) ? > Well, no. Individual component states (e.g. a form field) are synchronized using generic commands that serve distributed n

Re: [qooxdoo-devel] Jspresso 3.5.0 introduces qooxdoo 1.1 support

2010-06-21 Thread Jean-Baptiste BRIAUD -- Novlog
On 21 juin 2010, at 11:40, Vincent Vandenschrick wrote: > [CUT] > > Basically, using Jspresso, can I : > * have a stateless server ? All the GUI statically produce by Qooxdoo build, > then only data use the network using RPC ? > > No. The UI is created on the fly by the client UI engines at ru

[qooxdoo-devel] UploadWidget Updated

2010-06-21 Thread Tobias Oetiker
I have updated the UploadWidget with more current qooxdoo coding and also fixed some bugs. If you want to continue using the old 'trunk' switch to version 0.3 which is a copy of the current trunk. I have tested the widget on chrome 5, ff 3.6 and IE 8 if you find problems, please let me know ...

Re: [qooxdoo-devel] what's wrong with community management?

2010-06-21 Thread Burak Arslan
Hello Andreas, So, we all got a nice collection of small coins from all around the world :) I'm looking forward to your blog post about what's been said here. You may find my answers below. Best regards, Burak On 06/21/10 11:56, Andreas Ecker wrote: > Let me here just emphasize, that I also d

Re: [qooxdoo-devel] Jspresso 3.5.0 introduces qooxdoo 1.1 support

2010-06-21 Thread Vincent Vandenschrick
Hi Jean-Baptiste, First, congratulation ! This is really qood to see big technical project > using Qooxdoo. > Thank you for your encouragement! Then a question on software architecture for Jspresso application. > The question behind for me is why not using it ? > What are you calling "server cen

Re: [qooxdoo-devel] How to use stopPropagation() and preventDefault() correctly?

2010-06-21 Thread Christian Hagendorn
Hi Marta, first of all, I will answer your question which event is cancelable or not. You can use the isCancelable method from the event itself: http://tinyurl.com/39jyfbq So stopping the data event is no possibility, this makes the using from stopPropagation not possible. The only way is to

[qooxdoo-devel] Promote Qooxdoo on social network.

2010-06-21 Thread Jean-Baptiste BRIAUD -- Novlog
Hi, Just to let LinkedIn users that a Qooxdoo group exists : http://www.linkedin.com/groups?gid=112784 A French group (hub) on viadeo : http://www.viadeo.com/hu03/0022ceseey2k6vu8/qooxdoo A Facebook group : http://www.facebook.com/group.php?gid=21506053796&v=wall JBB. ---

Re: [qooxdoo-devel] Selenium qxTableClick depending on platform

2010-06-21 Thread Olivier ZORO-BI
Daniel Wagner wrote: > Hi Olivier, > > I strongly doubt it's a problem with the table widget itself. Either > the qooxdoo Selenium extensions are buggy or it's somehow related to > your test setup. > > Please check the following things: > > * Make sure you're using the same Simulator revision on

Re: [qooxdoo-devel] what's wrong with community management?

2010-06-21 Thread Andreas Ecker
Hi Burak, I came across this post of yours, which you split off the "original" thread, but ask some of the same questions. I can second the answers Thomas already gave and in case you missed it like to point you to my last week's answers in the other thread. Let me here just emphasize, that I als

Re: [qooxdoo-devel] Top most widgets on a Desktop

2010-06-21 Thread Christian Hagendorn
Hi, using the zIndex is the right way, maybe you used a too small value. Here is a short example with zIndex: http://tinyurl.com/3x3wqkw Cheers, Chris Am 19.06.2010 13:22, schrieb redroom: > Hello, > > I have an application with a Desktop object and Windows in it, and I would > like to add some

Re: [qooxdoo-devel] Jspresso 3.5.0 introduces qooxdoo 1.1 support

2010-06-21 Thread Jean-Baptiste BRIAUD -- Novlog
Hi Vincent, First, congratulation ! This is really qood to see big technical project using Qooxdoo. Then a question on software architecture for Jspresso application. The question behind for me is why not using it ? What are you calling "server centric" ? I found that RPC might be in contradicti

Re: [qooxdoo-devel] spped of development

2010-06-21 Thread Daniel Wagner
Hi, agreed. There's already an enhancement meta bug for contrib-related tooling stuff[1]. I've added a new report for the automated testing aspect[2]. Suggestions are very welcome :) [1]http://bugzilla.qooxdoo.org/show_bug.cgi?id=3042 [2]http://bugzilla.qooxdoo.org/show_bug.cgi?id=3785 f...@ma

[qooxdoo-devel] selective reloadData()

2010-06-21 Thread Piotr Leszczynski
Hello, I have a table with logs in my app using remote table model. Due to how logs work I would like to update only part of the table. My problem is that reloadData() updates the whole table. Ive overwritten the reloadData() method with my own code but it didn't work. Ive looked into the code

Re: [qooxdoo-devel] [Feature request] Tree - icon and open-icon

2010-06-21 Thread MartinWittemann
Hello Petr, I'm not sure about that feature request. We have to consider that it has to fit every application development, not just the one application you are currently building. Could you perhaps give us some more details on why you don't like it and whats not fitting? Regards, Martin -- View t

Re: [qooxdoo-devel] Jspresso 3.5.0 introduces qooxdoo 1.1 support

2010-06-21 Thread Vincent Vandenschrick
Thank you Andreas ! The news has just been relayed by TechWorld Australia with emphasis on qooxdoo : http://www.techworld.com.au/article/350614/open_source_jspresso_serves_multi-channel_ria Best, Vincent 2010/6/21 Andreas Ecker > Hi Vincent, > > thanks for your input and congrats to your achie

Re: [qooxdoo-devel] Jspresso 3.5.0 introduces qooxdoo 1.1 support

2010-06-21 Thread Andreas Ecker
Hi Vincent, thanks for your input and congrats to your achievement! :-) Good luck with your project. Keep us all up-to-date with its progress and any exciting new features. http://qooxdoo.org/documentation/general/development_platforms#jspresso Bye, Andreas On Sun, 2010-06-20 at 22:03 +0200,

Re: [qooxdoo-devel] speed of development

2010-06-21 Thread Andreas Ecker
Hi flj, thanks for your feedback. On Sun, 2010-06-20 at 23:28 +0200, f...@mail.dnttm.ro wrote: > > What OS projects are you thinking of? For Python, Guido van Rossum is > > "benevolent dictator for life", and last time I checked Linus Torvalds > > still oversees the patches to the Linux kernel.

[qooxdoo-devel] Top most widgets on a Desktop

2010-06-21 Thread redroom
Hello, I have an application with a Desktop object and Windows in it, and I would like to add some image widgets that would animate sometimes on top of it, even on top of the windows... like an add banner. So far my image is on top of the desktop but behind the windows. I tried to play with zInde