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
> 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
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
>
> 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
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
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
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
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'
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
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
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
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
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?
>
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
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
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,
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
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
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
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
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
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
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
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
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
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
>
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
==
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
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
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
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
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.
-
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
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.
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" : "
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
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
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
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
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
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
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
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
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
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
45 matches
Mail list logo