Re: [qooxdoo-devel] Comparison, GWK or Qooxdoo?

2010-04-06 Thread Tom Schindl
That's exactly why I created QxWT. Tom Am 07.04.10 03:31, schrieb Simon Bull: > For what it's worth, it looks like GWT doesn't yet have the same level > of theme and widget richness as Qooxdoo, so we've decided to stick with > Qooxdoo on our project. > > Simon > > On Fri, Apr 2, 2010 at 2:50 AM

[qooxdoo-devel] where to begin

2010-04-06 Thread Don Lee
What does a beginner need to read to understand how to use Qooxdoo? Is there a specific javascript text I should review before diving into Qooxdoo? -- Download IntelĀ® Parallel Studio Eval Try the new software tools for you

Re: [qooxdoo-devel] drag and drop with a checkbox?

2010-04-06 Thread Greg Beaver
On 4/6/10 3:04 AM, Christian Schmidt wrote: > Hi Greg, > > could you please send me a code snippet to reproduce this behavior? > Hi Chris, I took this example: http://demo.qooxdoo.org/current/demobrowser/#data~ExtendedList.html and combined it with this one: http://demo.qooxdoo.org/current/demo

Re: [qooxdoo-devel] Comparison, GWK or Qooxdoo?

2010-04-06 Thread Simon Bull
For what it's worth, it looks like GWT doesn't yet have the same level of theme and widget richness as Qooxdoo, so we've decided to stick with Qooxdoo on our project. Simon On Fri, Apr 2, 2010 at 2:50 AM, Tom Schindl wrote: > Hi, > > Why not useing QxWT [1,2]? It is a JSNI-Wrapper for qooxdoo bu

Re: [qooxdoo-devel] including external resources?

2010-04-06 Thread Greg Beaver
On 4/6/10 3:39 AM, thron7 wrote: > Greg, > > On 04/04/2010 11:01 PM, Greg Beaver wrote: > >> Hi, >> >> I'm trying to include some oxygen icons and also some icons from the >> htmlarea demo browser in my application, but qooxdoo is unable to find >> them. >> > When does the error show (comp

Re: [qooxdoo-devel] (Tree-) Model question

2010-04-06 Thread Christian Schmidt
Hi Peter, I'm not a expert for Data Binding, but it seems to me that this is a bug in the tree controller. It seems to me that the tree controller doesn't remove the "change" event from a removed node. So could you please open a bug report for that issue? Thanks, Chris At the first look I t

Re: [qooxdoo-devel] every custom job seems to create new cache (qooxdoo 1.0.1)

2010-04-06 Thread Peter Schneider
Thanks again you your explanations, Thomas. I totally agree that nothing "magical" should be implemented! As you noted in your next answer, either the documentation is wrong or the implementation ;) I will definitely apply your "my-job-settings" approach, that will set the "cache" and other keys

[qooxdoo-devel] (Tree-) Model question

2010-04-06 Thread Peter Schneider
Hi there, I currently have a situation that I am not sure of whether this is logical or a bug... I have a (data-)model, a tree and a controller. BTW: The model and it's initial creation is "stolen" from the model used by the TreeController demo of the demobrowser[1]. This is the playground URL of

Re: [qooxdoo-devel] TreeVirtual edit leaf or branch node

2010-04-06 Thread Derrell Lipman
On Tue, Apr 6, 2010 at 06:26, Roberto Frisina wrote: > Hi All, > I've a *TreeVirtual* and I want to edit the label for Leaf or Branch. > > In the *qx.ui.table.Table* widget is possible to make a column editable ( > tableModel.setColumnEditable(col, true) ) and after that i can execute the > start

Re: [qooxdoo-devel] every custom job seems to create new cache (qooxdoo 1.0.1)

2010-04-06 Thread thron7
>> Why do I need to set the "cache"-key for every custom job? > > You only need to set it if you don't like the default (./cache). You Oups, that slipped my attention. You are right, the docs say the default is "${CACHE}" and not "./cache", but as I wrote this can only hold if the job actua

Re: [qooxdoo-devel] every custom job seems to create new cache (qooxdoo 1.0.1)

2010-04-06 Thread thron7
> For example the documentation states for every sub-key of "cache" that they > have a default value. That would mean, I can leave out _all_ sub-keys and > apply > just an empty map to the "cache" key... O.K. that's maybe a weak argument[1], Yes, you could do that, or leave out the "cache" key a

Re: [qooxdoo-devel] every custom job seems to create new cache (qooxdoo 1.0.1)

2010-04-06 Thread Peter Schneider
Hi Thomas, you are right, I used a complete wrong syntax! No idea where I got that wrong syntax from (possibly some link into older documentation...) I now only set the "cache/compile" key and it seems to do what I like to see :-D So, (for the record) the example "ls" job will look like this now

Re: [qooxdoo-devel] making qx.ui.form.CheckBox draggable

2010-04-06 Thread Alexander Steitz
Hi Greg, On Thursday April 1 2010 23:07:04 Greg Beaver wrote: > It turns out that there is a small bug in the implementation of > qx.ui.form.ToggleButton._onMouseDown which is preventing drag-and-drop > from working. The fix? > > change: > > e.stopPropagation(); > > to > > if (!th

[qooxdoo-devel] TreeVirtual edit leaf or branch node

2010-04-06 Thread Roberto Frisina
Hi All, I've a *TreeVirtual* and I want to edit the label for Leaf or Branch. In the *qx.ui.table.Table* widget is possible to make a column editable ( tableModel.setColumnEditable(col, true) ) and after that i can execute the startEditing() of the focused cell. Is possible to make theese ste

Re: [qooxdoo-devel] every custom job seems to create new cache (qooxdoo 1.0.1)

2010-04-06 Thread thron7
On 04/06/2010 11:43 AM, Peter Schneider wrote: >> For one thing, currently each job has to have a "cache" key - either >> directly or through "extend"ing other jobs that provide it. If you don't >> provide a "cache" key, the generator will use the default "./cache". > > Sorry, but that's not the

Re: [qooxdoo-devel] every custom job seems to create new cache (qooxdoo 1.0.1)

2010-04-06 Thread Peter Schneider
> For one thing, currently each job has to have a "cache" key - either > directly or through "extend"ing other jobs that provide it. If you don't > provide a "cache" key, the generator will use the default "./cache". Sorry, but that's not the case (at least for version 1.0.1). As I mentioned, sett

Re: [qooxdoo-devel] every custom job seems to create new cache (qooxdoo 1.0.1)

2010-04-06 Thread thron7
For one thing, currently each job has to have a "cache" key - either directly or through "extend"ing other jobs that provide it. If you don't provide a "cache" key, the generator will use the default "./cache". On the other side, you may argue that there are jobs that don't require a cache, and th

Re: [qooxdoo-devel] including external resources?

2010-04-06 Thread thron7
Greg, On 04/04/2010 11:01 PM, Greg Beaver wrote: > Hi, > > I'm trying to include some oxygen icons and also some icons from the > htmlarea demo browser in my application, but qooxdoo is unable to find > them. When does the error show (compile time / run time)? Which message do you get? Which q

Re: [qooxdoo-devel] Qooxdoo images license

2010-04-06 Thread Christian Schmidt
Hi mckwil, I'm not a expert for general license questions. The icons are licensed under the LGPL, see the LICENSE file in: qooxdoo-0.8.3-sdk\framework\source\resource\qx\compat\icon\CrystalClear Cheers, Chris Am 03.04.2010 04:00, schrieb mckwil: > Hi, > > I have a general question about the qoo

Re: [qooxdoo-devel] One file per

2010-04-06 Thread thron7
On 04/03/2010 06:54 AM, Sakesun Roykiattisak wrote: > > Hi, > > Just curious about the "single Definition" code structure. > > > http://qooxdoo.org/documentation/1.0/code_structure > > > > Is it the mandatory rule or merely a suggestion ? > > > My simple experiment reveal that m

Re: [qooxdoo-devel] drag and drop with a checkbox?

2010-04-06 Thread Christian Schmidt
Hi Greg, could you please send me a code snippet to reproduce this behavior? Thanks, Chris Am 01.04.2010 15:38, schrieb Greg Beaver: > Hi, > > I have a List containing custom ListItems that are CheckBox objects as > in one of the demo browser examples. I'd like to be able to have the > user re-

Re: [qooxdoo-devel] NOOB alert - Stuck with inline type app wanting to use toolbar

2010-04-06 Thread Christian Schmidt
Hi Werner, I don't know why the dependency analysis doesn't solve the missing class, because the "qx.*" is already included by default??? Could you please share your application.js? Which qooxdoo version do you use? Thanks, Chris Am 02.04.2010 16:24, schrieb Werner Thie: > Hi > > found a solu

Re: [qooxdoo-devel] [english 100%] Re: Radio Buttons

2010-04-06 Thread Christian Schmidt
Hi Stefan, the setSelection method needs an array as parameter, please change this: rg.setSelection(radioButton1); to: rg.setSelection([radioButton1]); Cheers, Chris Am 01.04.2010 23:39, schrieb Stefan Meyer: > Hello, > > yes i do and i dont find a solution. > > >> Have you tried reading the