Re: [qooxdoo-devel] Remote Table Model

2009-08-03 Thread Daniel Hirtzbruch
Well, tonight I managed adding my own params to the remote table request by extending the Remote class. Not really beautiful / handy but its doing the job. I'll modify some things and then try to contribute the remote table extension if desired. Thank you Gene, Daniel processed by Dav

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread skar
> That code has now been commited to svn. I don't know, though, why you > couldn't apply it to trunk since that's where I did the changes in the first > place. > Sorry, my mistake. I didn't apply the patch correctly and it works fine with the patch now :) Thanks for the commit, now I needn't wo

[qooxdoo-devel] Appearance question

2009-08-03 Thread Jim Hunter
Why is it that when I am creating my own custom control using the this._createChildControl method, I get warnings about missing appearance, but when I create the same control in the constructor directly, it works fine? How can I easily create my controls using this._createChildControl and not get t

Re: [qooxdoo-devel] Problem with images

2009-08-03 Thread thron7
> > The previous message has the output with "export" key in config.json > (sorry, > about that). > Here is the output without the "export" key. No bother about that. The "export" key only limits which job you can invoke on the command line. Since in my other mail I suggested running "generate.py

Re: [qooxdoo-devel] Remote Table Model

2009-08-03 Thread Gene Amtower
On Mon, 2009-08-03 at 15:08 +, Daniel Hirtzbruch wrote: > Hello everybody, > > I'm using the remote table model for displaying results from a mysql > database. Therefore I extended the remote table class as described in > http://qooxdoo.org/documentation/0.8/remote_table_model. How can I pa

Re: [qooxdoo-devel] Date Format Parser

2009-08-03 Thread A.Yerenkow
On 03.08.2009 18:57, Fritz Zaucker wrote: > Hi A., > > for example: > > var datefield = new qx.ui.form.DateField(); > datefield.setDateFormat(new > qx.util.format.DateFormat('-MM-dd')); > > date = datefield.getDateFormat().format(datefield.getValue()); > > Cheer

Re: [qooxdoo-devel] Date Format Parser

2009-08-03 Thread Fritz Zaucker
Hi A., for example: var datefield = new qx.ui.form.DateField(); datefield.setDateFormat(new qx.util.format.DateFormat('-MM-dd')); date = datefield.getDateFormat().format(datefield.getValue()); Cheers, Fritz P.S.: You can of course use other formats than '-M

Re: [qooxdoo-devel] Date Format Parser

2009-08-03 Thread A.Yerenkow
On 03.08.2009 18:24, Martin Wittemann wrote: > Hello Alexander, > you are supplying the date format during the creation of the > DateFormat object: > "-MM-dd" > > Thats why your > '2008-12-08 15:17:51.289' > is not fitting the date format. Something fitting would look like this: > '2008-12-08'

Re: [qooxdoo-devel] Questions on trees...

2009-08-03 Thread Derrell Lipman
On Fri, Jul 31, 2009 at 08:38, Ingrid Lohmann wrote: > > I'd like to program a tree having icons for each item. At the moment I'm > using the treevirtual- class which works. But the tree data comes out of a > data base. So I had the idea to generate a json-File with php and import it > from a tre

Re: [qooxdoo-devel] RadioGroup and Form management

2009-08-03 Thread Martin Wittemann
Hello Christian, as I said this morning, I'm adding this feature soon. I just commited the support for the RadioGroup. :) Best, Martin Am 02.08.2009 um 17:44 schrieb panyasan: > > Hi, > > the new form management planned for 0.8.3 is a great leap forward > and well > thought out. However, bei

Re: [qooxdoo-devel] Date Format Parser

2009-08-03 Thread Martin Wittemann
Hello Alexander, you are supplying the date format during the creation of the DateFormat object: "-MM-dd" Thats why your '2008-12-08 15:17:51.289' is not fitting the date format. Something fitting would look like this: '2008-12-08' Setting the format to "-MM-dd HH:mm:ss.SSS" should fix

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread Derrell Lipman
On Mon, Aug 3, 2009 at 06:53, skar wrote: > Hi, > > ah thats an interesting information that you are using the 0.8.2 > > release. The time chooser seems to be ported to trunk and the new form > > API so you can't use the timechooser widget in 0.8.2 anymore. I'm sorry. > > But what patches are you

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread Martin Wittemann
Do you have any idea why you cant use them? Whats the error message if you want to use the framework internal DateChooser for example? Am 03.08.2009 um 16:03 schrieb skar: > Hi, >> what's the problem with your original project? Do you also have >> trouble using the DateField of the framework? >

[qooxdoo-devel] Date Format Parser

2009-08-03 Thread A.Yerenkow
Hello guys! I'm trying to use a var dateFormat = new qx.util.format.DateFormat("-MM-dd"); and trying to parse a string, but I get an error: message: Date string '2008-12-08 15:17:51.289' does not match the date format: -MM-dd On my Java back-end this works just well. In your docs, there

[qooxdoo-devel] Remote Table Model

2009-08-03 Thread Daniel Hirtzbruch
Hello everybody, I'm using the remote table model for displaying results from a mysql database. Therefore I extended the remote table class as described in http://qooxdoo.org/documentation/0.8/remote_table_model. How can I pass my own parameters to the query, before using the remote table I did

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread skar
Hi, > what's the problem with your original project? Do you also have > trouble using the DateField of the framework? > Yes, in the original project created using 0.8.3 of the sdk, I couldn't get date as well as time choosers. But in a new project from scratch, it seems to work well. cheers,

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread Martin Wittemann
Hi, what's the problem with your original project? Do you also have trouble using the DateField of the framework? Regards, Martin Am 03.08.2009 um 15:21 schrieb skar: > Hi, >> could it be that you named your timechooser variable timechooser like >> I did in the example? That is a problem as I

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread skar
Hi, > could it be that you named your timechooser variable timechooser like > I did in the example? That is a problem as I found out right now > because you are deleting the top namespace of the timechooser and > thats why it is undefined. Took me some minutes to get to the bottom > of this

Re: [qooxdoo-devel] Problem with a Label color in an inline island

2009-08-03 Thread Fabian Jakobs
Jean-Noël Rivasseau schrieb: > Ok, thanks. According to the bug you already fixed it in trunk. Can > you just tell me the line you changed so as to avoid me to checkout > the trunk just for this? Sure, just add this to qx.bom.Label (line 190): xulel.style.cursor = "inherit"; +xu

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread Martin Wittemann
Hi, could it be that you named your timechooser variable timechooser like I did in the example? That is a problem as I found out right now because you are deleting the top namespace of the timechooser and thats why it is undefined. Took me some minutes to get to the bottom of this but as I

Re: [qooxdoo-devel] Tree Selection Manager for Checkboxes

2009-08-03 Thread Guilherme Aiolfi
Hi Jonathan, I made some progress. But I really think the selection manager should be a property in "qx.ui.core.MMultiSelectionHandling". Then I can add the listener to checkboxes and call the manager to deal with the selection. How it's right now I'll have to deal with the selection outside the ma

Re: [qooxdoo-devel] Problem with a Label color in an inline island

2009-08-03 Thread Jean-Noël Rivasseau
Ok, thanks. According to the bug you already fixed it in trunk. Can you just tell me the line you changed so as to avoid me to checkout the trunk just for this? Jean-Noel On Mon, Aug 3, 2009 at 12:58 PM, Fabian Jakobs wrote: > Jean-Noël Rivasseau schrieb: > > Hi, I encountered the following prob

Re: [qooxdoo-devel] Problem with a Label color in an inline island

2009-08-03 Thread Fabian Jakobs
It's fixed in r19747. > Jean-Noël Rivasseau schrieb: > >> Hi, I encountered the following problem today. >> >> I have a Qooxdoo label that I apply a color to via the usual Qx Theme >> system. However, the color was not applied (in Firefox only) because >> my main page had the following line on

Re: [qooxdoo-devel] Table Font Size and vAlign

2009-08-03 Thread GlebM
Fabian Jakobs-2 wrote: > > GlebM schrieb: >> What would be the most proper way of setting the table's font size and >> cell's >> vertical alignment? >> I did search, but the previous discussions are quite outdated (year >> 2007). >> > What was the solution back then? The table has been pretty

Re: [qooxdoo-devel] Problem with a Label color in an inline island

2009-08-03 Thread Fabian Jakobs
Jean-Noël Rivasseau schrieb: > Hi, I encountered the following problem today. > > I have a Qooxdoo label that I apply a color to via the usual Qx Theme > system. However, the color was not applied (in Firefox only) because > my main page had the following line on its CSS: > > label { color: black

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread skar
Hi, > ah thats an interesting information that you are using the 0.8.2 > release. The time chooser seems to be ported to trunk and the new form > API so you can't use the timechooser widget in 0.8.2 anymore. I'm sorry. > But what patches are you speaking of? Is there a already a bug report >

Re: [qooxdoo-devel] Problem with images

2009-08-03 Thread GlebM
The previous message has the output with "export" key in config.json (sorry, about that). Here is the output without the "export" key. INITIALIZING: IREQUEST_DJ ==

Re: [qooxdoo-devel] Table Font Size and vAlign

2009-08-03 Thread Fabian Jakobs
GlebM schrieb: > What would be the most proper way of setting the table's font size and cell's > vertical alignment? > I did search, but the previous discussions are quite outdated (year 2007). > What was the solution back then? The table has been pretty constant over the time. Some bugs have b

Re: [qooxdoo-devel] Problem with images

2009-08-03 Thread GlebM
Yes, I tried it without ResourceManager. I tried a lot of stuff :) Right now my code is exactly as in the tutorial. (Without ResourceManager) I do not see any images and I keep getting warnings like this: 46176ms ImageLoader: Not recognized format of external image 'resource/irequest_dj/decoratio

Re: [qooxdoo-devel] multiline table header cells

2009-08-03 Thread Daniel Hirtzbruch
Hello, again I tried using the extended class for displaying multiline table headers. I added the following lines: var tcm = new this.__table.getTableColumnModel(); tcm.setHeaderCellRenderer(0, new pricecmp.ui.table.headerrenderer.HeaderCell()); I always get an error message that pricecmp.ui is

Re: [qooxdoo-devel] The easiest way to put a button in a table cell

2009-08-03 Thread Fabian Jakobs
Hi Gleb, > But how do I put a button that is not a checkbox? I just need a clickable > button, or a link with an attached clicklistener. > You can just use the "Image" cell renderer to render the image of your button and then attach a "cellClick" event listener to your table. In this listener

Re: [qooxdoo-devel] Exhaustive list of all possible Color Theme properties

2009-08-03 Thread GlebM
Thank you, Martin! Worked like a charm :) -- View this message in context: http://www.nabble.com/Exhaustive-list-of-all-possible-Color-Theme-properties-tp24779368p24788601.html Sent from the qooxdoo-devel mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread Martin Wittemann
Hi, ah thats an interesting information that you are using the 0.8.2 release. The time chooser seems to be ported to trunk and the new form API so you can't use the timechooser widget in 0.8.2 anymore. I'm sorry. But what patches are you speaking of? Is there a already a bug report for that

Re: [qooxdoo-devel] The easiest way to put a button in a table cell

2009-08-03 Thread GlebM
Hi! Thank you, I managed to disable sorting on the column (kinda expected it to be a part of view, not a model). But how do I put a button that is not a checkbox? I just need a clickable button, or a link with an attached clicklistener. /Gleb -- View this message in context: http://www.nabble.

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread skar
Hi Martin, > the easiest way is to let the generator download the contribution. > Just take a look at the following documentation which explains how to > get this going: > http://qooxdoo.org/documentation/0.8/generator_config_articles#contrib_libraries > > { >"manifest" : "

Re: [qooxdoo-devel] Form Handling

2009-08-03 Thread Martin Wittemann
Hello Daniel, yes, the whole form handling is currently a topic here in the core development. But as you are on 0.8.2 you dont have the new form validator so you need to validate the whole thing by yourself. But the data binding is part of 0.8.2 so you can use these components to get your da

[qooxdoo-devel] Problem with a Label color in an inline island

2009-08-03 Thread Jean-Noël Rivasseau
Hi, I encountered the following problem today. I have a Qooxdoo label that I apply a color to via the usual Qx Theme system. However, the color was not applied (in Firefox only) because my main page had the following line on its CSS: label { color: black; } so all the labels were black. I invest

Re: [qooxdoo-devel] Exhaustive list of all possible Color Theme properties

2009-08-03 Thread Martin Wittemann
Hi, I don't know if I get your question right but as far as I understand, you want a list containing all properties which are themeable and of the type color? If so, you can benefit from the fact, that all themeable properties must define a themeable : true in their property definition. So

Re: [qooxdoo-devel] Problem with images

2009-08-03 Thread thron7
GlebM wrote: > I have 4 problems with images and qooxdoo. > > Here is my folder structure (project name: irequest_dj): > > irequest_dj\source\resource\irequest_dj\icons > irequest_dj\source\resource\irequest_dj\decoration > > icons contains project icons > decoration contains my custom theme deco

Re: [qooxdoo-devel] RadioGroup and Form management

2009-08-03 Thread Martin Wittemann
Hello Christian, thanks for the compliments about the form management. :) Yes, the RadioGroup is something I still have on my list for the qooxdoo form. It is a special case in form because its not a widget but it supports single selection. So the resetter and the validation work as expected

Re: [qooxdoo-devel] tabIndex and hidden forms problem

2009-08-03 Thread Martin Wittemann
Hello tobi, thanks for reporting this issue. I created a example like you explained and I can only see that the tabbing does not wrap anymore which is a bug in deed and should be fixed in the framework. I opened a bug report for it: http://bugzilla.qooxdoo.org/show_bug.cgi?id=2644 Have you expe

Re: [qooxdoo-devel] how to load TimeChooser inside an app?

2009-08-03 Thread Martin Wittemann
Hello skar, the easiest way is to let the generator download the contribution. Just take a look at the following documentation which explains how to get this going: http://qooxdoo.org/documentation/0.8/generator_config_articles#contrib_libraries Your jobs definition in the config.json could l

Re: [qooxdoo-devel] The easiest way to put a button in a table cell

2009-08-03 Thread A.Yerenkow
On 02.08.2009 22:04, GlebM wrote: > Also, if I put a button somehow, I don't want the user to be able to sort the > column with buttons. > Is it possible? > Here's usage example: http://demo.qooxdoo.org/current/demobrowser/#table~Table.html You can see there "JS Code", there what you need abou

Re: [qooxdoo-devel] multiple Table Header Rows

2009-08-03 Thread Daniel Hirtzbruch
Hello and thanks for the reply Martin. I'll have to use the multiline header cell for this issue then. Thank you, Daniel Original Message Subject: Re: [qooxdoo-devel] multiple Table Header Rows (03-Aug-2009 9:15) From:Martin Wittemann To: qoox...@dhirtzbruch.de > Hel

Re: [qooxdoo-devel] multiple Table Header Rows

2009-08-03 Thread Martin Wittemann
Hello Daniel, I'm sorry but thats with the current implementation of the table not possible. But we do have such a feature in our plans for the new virtual table. But that one is still in its very early steps. Regards, Martin Am 03.08.2009 um 06:15 schrieb Daniel Hirtzbruch: > Good Morning