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

2010-04-07 Thread Jean-Noël Rivasseau
Totally agreed with this last comment. We needed a good, OO oriented toolkit and I had already worked with GWT when we went shopping around. However we picked Qooxdoo ultimately because we needed fair control over low level stuff and had to integrate into an existing web page and manipulate the DOM

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

2010-04-07 Thread waysoftheearth
Neither is definitively better than the other. Both are fit for different purposes. My personal opinion is that it is better to work directly with the runtime of your application. I.e., in this case, coding directly in javascript gives the ultimate low level control. Developing a browser deliv

Re: [qooxdoo-devel] Dialog's form dialog

2010-04-07 Thread panyasan
Hi Huseyin, sorry for not answering earlier, I have been away for Easter holidays. I'll be working on the Dialog widget shortly, can you open bugs in the qooxdoo bugzilla for this? Thanks, Christian -- View this message in context: http://n2.nabble.com/Dialog-s-form-dialog-tp4836445p4866620.

Re: [qooxdoo-devel] Rendering rows of table in different colors

2010-04-07 Thread Bruce Bockius
Or you might be able to setup a Conditional render: var myrenderer = new qx.ui.table.cellrenderer.Conditional(null, null, null, null); myrenderer.addRegex(".*[^ ] $", null, "00B720", null, null, null); // one trailing space is Green (editable) table.getTableColumnModel().setDataCellRend

Re: [qooxdoo-devel] Rendering rows of table in different colors

2010-04-07 Thread Daniel Wagner
Hi vyankatesh, in order to achieve this, you'll have to write your own RowRenderer. Take a look at the API documentation for the qx.ui.table.IRowRenderer interface and the implementation of qx.ui.table.rowrenderer.Default, in particular the "createRowStyle" and "updateDataRowElement" methods.

Re: [qooxdoo-devel] where to begin

2010-04-07 Thread Don Lee
Thanks for the reply. I will check out the resources. My question was triggered because I was running into issues with part two of the tutorial. It turns out I typed "textarea.setPlaceHolder" instead of "textarea.setPlaceholder". The qooxdoo inspector did not show a problem so I thought I just ma

[qooxdoo-devel] Rendering rows of table in different colors

2010-04-07 Thread vyankatesh.dudhe
Hi, I am trying to display rows of my tables in different colors . Please help me to achieve this. Please provide sample code to do same. Thanks. Regards, vyankatesh -- Download Intel® Parallel Studio

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

2010-04-07 Thread Sakesun Roykiattisak
Real thanks for the answer. I was very sick of waiting for compiler and IDE when I start migrating some of my work to python few years ago. UI is something I'm yet to find productive way to build in scripting. Qooxdoo is currently my new hope I'm exploring. Seeing Google offer a system to compile j

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

2010-04-07 Thread Greg Beaver
On 4/7/10 2:04 AM, Christian Schmidt wrote: > Hi Greg, > > Thank you for answering, but I think it's like Alex sad in a other > thread. You have to override the behavior yourself. Hi, I have done this, but the problem is twofold: this is not documented anywhere that drag/drop doesn't work with ch

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

2010-04-07 Thread Tom Schindl
Hi, Naturally I'm a bit biased :-) 1. Programming-Style and Tools: --- Well both of them have pros and cons. I like the typesafety and the perfect IDE-Integration of Java (Codecompletion, Refactoring Support, Debugging-Support, ...) in Eclipse, Netbeans, IDEA, ... wh

[qooxdoo-devel] Request for removing (UTF-8)BOM of file (qooxdoo-1.0.x ++)

2010-04-07 Thread Peter Schneider
Hi there, I would like to see the BOM removed from the file ".\framework\source\class\qx\lang\Core.js". If anyone responsible would be so nice to do that in both "trunk" and "branch_1_0_x"? My scan for further files that might have the (UTF-8)BOM, found no more sources. I know that these leading

Re: [qooxdoo-devel] where to begin

2010-04-07 Thread Daniel Wagner
Hi, you mean a qooxdoo book? Not that I'm aware of. Regards, Daniel Sakesun Roykiattisak schrieb: > Is there any book in writing, currently ? > >> - Original Message - >> From: Daniel Wagner >> Sent: 04/07/10 02:33 PM >> To: qooxdoo Development >> Subject: Re: [qooxdoo-devel] where to b

Re: [qooxdoo-devel] where to begin

2010-04-07 Thread Sakesun Roykiattisak
Is there any book in writing, currently ? > - Original Message - > From: Daniel Wagner > Sent: 04/07/10 02:33 PM > To: qooxdoo Development > Subject: Re: [qooxdoo-devel] where to begin > Hi Don, that's an interesting question and I hope others on the list will add their suggestions. As

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

2010-04-07 Thread Sakesun Roykiattisak
Does that implied that you believe coding in java (GWT) is better than direct javascript ? Just want to hear an opinion from someone who proficient in both. > - Original Message - > From: Tom Schindl > Sent: 04/07/10 12:31 PM > To: qooxdoo Development > Subject: Re: [qooxdoo-devel] Compa

Re: [qooxdoo-devel] including external resources?

2010-04-07 Thread thron7
> After writing, I found this section of the manual: > > http://qooxdoo.org/documentation/1.0/ui_resources > > which helped answer my questions. I ended up copying the files I wanted > inside my own resource section, but the "libraries" job of the > config.json is not explicitly mentioned there

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

2010-04-07 Thread Peter Schneider
Hi Chris, did file a bug (http://bugzilla.qooxdoo.org/show_bug.cgi?id=3566). I had to select "1.0.1" for the version 'cause "1.1-pre" was not an option. Any recommendations for a work-around? I will try removing the children from the nodes array from top to bottom (reverse order)...I'll be back

Re: [qooxdoo-devel] where to begin

2010-04-07 Thread Daniel Wagner
Hi Don, that's an interesting question and I hope others on the list will add their suggestions. Assuming you already have at least some experience in object-oriented programming, you should of course be familiar with the basic concepts of JavaScript such as data types, control structures and

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

2010-04-07 Thread Christian Schmidt
Hi Greg, Thank you for answering, but I think it's like Alex sad in a other thread. You have to override the behavior yourself. Cheers, Chris Am 07.04.2010 04:12, schrieb Greg Beaver: > On 4/6/10 3:04 AM, Christian Schmidt wrote: > >> Hi Greg, >> >> could you please send me a code snippet t