As a rule, should bugs be reported first on this list to see if I am
just stupid or should they go straight to bugzilla?
kt
--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles th
Andy Fuchs wrote:
> Hi team,
>
> just a side note: Did you ever try Qooxdoo on the latest Safari 4 public
> beta on Mac? (I guess, the same results in Win, but I haven't tried).
>
> The performance is OUTSTANDING! Their new Javascript Interpreter is fast
> like hell and makes Qooxdoo apps perfo
To be exact,
I modified generated files to contain this:
qx.$$loader = {
parts : {"boot":[0]},
uris : [qxscripts],
boot : "boot"
};
qxscripts is array of my files to load, but there is no network
communication and qooxdoo complains that there is no application (not
loaded, this is logical)
OK - thanks for the clarification.. We're not JavaScript-folks over here,
so maybe some questions sound stupid, but your answers - so far - were
brilliant! Thanks again for this!
best
andy
On 05.03.09 17:28, "thron7" wrote:
>
>
> Andy Fuchs wrote:
>> Imagine my webbrowser contacted a serve
Hi devs,
after some time not developing in qooxdoo I'm back. I want to update
qxbuild to be able to sucessfully build 0.8.2 and SVN. I tried it now
and I have some problems.
First I see is that there is now only 1 javascript file generated per
one build type (build or debug), I tried to look at g
Good work!
Virtual components are really good, I hope that sometimes there will
be possibility to render their content by ;-)
Cheers and thanks
- Petr
2009/3/5 Sebastian Werner :
> Excellent. Thank you for your great work. 0.8.2 is a huge release for
> qooxdoo!
> Sebastian
>
> 2009/3/5 Andreas
Dear Jonathan,
thank you for message.Unfortunately I received an errormessage.
G.getBehavior is not a function
I work with verson 0.81
here is a part of my programm.
var tabellenmodel = new qx.ui.table.model.Simple();
tabellenmodel.setColumns(["Nr.","Nachname","Vorname","Geburtsdatum"]);
var tabell
Excellent. Thank you for your great work. 0.8.2 is a huge release for
qooxdoo!
Sebastian
2009/3/5 Andreas Ecker
> Hi,
>
> this is to let all of you know that the qooxdoo 0.8.2 SDK was just put
> online successfully. :-) The usual tasks of announcing it officially and
> making available the fin
Congratulation to all the team and everyone who participate !
That's a great job, thanks !
--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Ope
Hi,
this is to let all of you know that the qooxdoo 0.8.2 SDK was just put
online successfully. :-) The usual tasks of announcing it officially and
making available the final release notes will follow later.
Thanks so far to all people involved, be it committers, contributors,
testers, supporters
hi Jonathan,
The problem here is, I have checkbox in one column and radio button in
another column (for each row). I can know the row index, but with row index
i cant identify, if the user had clicked on radiobutton column or checkBox
column. So I need only the column number and row number when t
Hi Amit,
On Thursday 05 March 2009 Amit Rana wrote:
> Congratz for the new pre-release of Qooxdoo. Can you let me know when
> will the SDK be out ?
Today ... that's the plan ;-)
Change your snippet to
--snip--
var doc = this.getRoot();
var t = new qx.ui.form.TextField();
t.setBackgroundColor("re
Hi Ludger,
On Wednesday 04 March 2009 ludger wrote:
> Dear Qooxdoo team,
> I tired
> var Tabelle = new qx.ui.table.Table(Tabellenmodell).set({width: "100%"});
> no error messages just a blank screen in my browser.
> my programm
>
> var Tabellenmodell = new qx.ui.table.model.Simple();
> Tabellenmod
Andy Fuchs wrote:
> Imagine my webbrowser contacted a server via Bonjour (ZeroConfig). So I know
> already the IP-Address of the server, but I don't know if port 80 is open.
> (btw. I don't care if a Firewall is running to block Ping, because in that
> case there's a reason for it and the server
Hi,
Congratz for the new pre-release of Qooxdoo. Can you let me know when
will the SDK be out ?
Currently, I was working with v0.8 SDK and tried the following code in
my application and also in Playground application (which refers 0.8.1) :
--snip--
var doc = this.getRoot();
var t = new qx.ui.f
The Rhino project (http://www.mozilla.org/rhino/) is a Javascript
implementation in Java; they might have something in that vein.
T.
Jean-Baptiste BRIAUD -- Novlog wrote:
> Hi,
>
> I'm sorry, this is a little bit out of scope as it doesn't concern
> qooxdoo directly.
>
> I'm looking for a java
Hi Florian,
On Thursday 05 March 2009 Florian Giesen wrote:
> Here is the sample code:
>
> qx.Theme.define("qx.theme.modern.Appearance",
> {
> appearances :
> {
> [...],
>
> "myimage" : [...],
>
> "spinner/upbutton" : "button",
> "spinner/upbutton/icon" : "myimage",
>
> [...]
> }
Hallo Robust,
you can use getRowData() to read the information inside the rows:
table.getTableModel().getRowData(index)
The index (min/max) of the selected rows can be read from the table
selection model:
e.g. event.getTarget().getSelectedRanges();
Kind regards,
Jonathan
---
I would also recommend JavaCC in general, I have used it for several parsers.
Bryan
-Original Message-
From: Siarhei Barysiuk [mailto:s.barys...@gmail.com]
Sent: Thursday, March 05, 2009 2:41 AM
To: qooxdoo Development
Subject: Re: [qooxdoo-devel] javascript lexer/parser for Java
Hi,
I
Thank you for the hint Roman,
unfortunately that did not work.
BUT there is another solution (thanks allot Thomas!): simply add the
following option to the Makefile
APPLICATION_ADDITIONAL_BUILD_OPTIONS = --package-id=vqx
Now the package uses $vqx for the optimized string array and the clash
Hi Gereon,
On Thursday 05 March 2009 Gereon A. Frey wrote:
> > Did you really cleared the cache using "./generate.py distclean"?
>
> No I didn't, but would this be required for a brand new project?
No, this is only needed if you change the qooxdoo versions and use the same
cache directory afterwa
jQuery has a mode called "noConflict" which you can use to assign the
jQuery "shortcut" ($ by default) to any other variable.
http://docs.jquery.com/Core/jQuery.noConflict
Best - Roman
Fabian Jakobs wrote:
> Dietrich Streifert schrieb:
>> Hello everybody,
>>
>> as a followup to my question regar
Hello everybody,
I have a simple question about a themeing / apearance example [1] (at
least I think the solution must be simple ;-)
Here is the sample code:
qx.Theme.define("qx.theme.modern.Appearance",
{
appearances :
{
[...],
"myimage" : [...],
"spinner/upbutton" : "button",
"s
Hello Andy,
you propably used the wrong link to the qx api:
http://demo.qooxdoo.org/devel/apiviewer/#qx.bom.Collection.
Here you will find plenty of information about qx.bom.Collection.
Regards, Florian
--
Open Source B
Hi Alexander,
* Alexander Back [090305 10:42]:
> On Thursday 05 March 2009 Gereon A. Frey wrote:
> > It's even easier. Just create a standard skeleton app (using
> > create-application -n without the inline stuff) and add
> > var t = qx.ui.treevirtual.TreeVirtual(['test']);
> > to Application.js
Dietrich Streifert schrieb:
> Hello everybody,
>
> as a followup to my question regarding charting libraries I came up to
> have a closer look into flot (http://code.google.com/p/flot/) which is
> based on jQuery.
>
> Are there any known problems using jQuery with qooxdoo?
>
> Thank you for your
Just a note:
While looking for a way to inject a custom CSS-style into the DOM, if found
the 'qx.bom.Collection' class, which seems to be nowhere documented. And it
doesn't show up in the API-viewer (0.8.2-pre-sdk 'this morning edition' ;-)
Is this considered as the correct instance to add a cust
Then, I don't know how your browser and so javascript will be able to
do something else than HTTP ... so forget ping I'm afraid.
That said, you may try HTTP on other port than 80.
On 5 Mar 2009, at 11:41, Andy Fuchs wrote:
> Imagine my webbrowser contacted a server via Bonjour (ZeroConfig).
>
Hello everybody,
as a followup to my question regarding charting libraries I came up to
have a closer look into flot (http://code.google.com/p/flot/) which is
based on jQuery.
Are there any known problems using jQuery with qooxdoo?
Thank you for your help.
--
Mit freundlichen Grüßen
Dietrich
Imagine my webbrowser contacted a server via Bonjour (ZeroConfig). So I know
already the IP-Address of the server, but I don't know if port 80 is open.
(btw. I don't care if a Firewall is running to block Ping, because in that
case there's a reason for it and the server doesn't want to be my friend
> It's even easier. Just create a standard skeleton app (using
> create-application -n without the inline stuff) and add
> var t = qx.ui.treevirtual.TreeVirtual(['test']);
> to Application.js. After generating I can reproduce the described effect
> on MacOS and Linux using 0.8.1 and lates
but what if firewall is configured to give no answer to ping ?
Could you give us more precisions on the context, why you want to do
that ?
If it is your network, make sure servers all open port 80 for eg and
HTTP GET is your friend :-)
Beware that will only ensure web server is running. Your
I was just wondering if there isn't a built-in 'poll' or 'ping' mechanism in
Qooxdoo. A search on the Qooxdoo portal resulted in nothing...
Why? If a server disappears, I just want to 'ping' it to see when it's back.
I'm not too familiar with these kind of things in Javascript, so any hint
would b
Hi Thomas,
could I ask for enumeration of the pre-sdks?
So, instead naming all pre-sdk releases the same, it would be very helpful
to have their build-number included
http://resources.qooxdoo.org/download/qooxdoo-0.8.2_18311-pre-sdk.zip
This would be very helpful also for the communication with
Hello Mike,
you discovered a bug. Using this.tr() should be working. At the moment
we are quite busy rolling out 0.8.2, but I have filed a bug using your
information: http://bugzilla.qooxdoo.org/show_bug.cgi?id=2045
Cheers,
Jonathan
On 04.03.2009, at 20:59, mshillin wrote:
>
> Translated
Hi Gereon,
On Thursday 05 March 2009 Gereon A. Frey wrote:
> It's even easier. Just create a standard skeleton app (using
> create-application -n without the inline stuff) and add
> var t = qx.ui.treevirtual.TreeVirtual(['test']);
> to Application.js. After generating I can reproduce the de
Hi Dietrich,
On Thu, 5 Mar 2009, Dietrich Streifert wrote:
> Very valuable informations!
You're welcome.
> My impression is that your application seems to be relativly complex.
whatever the metric is for that ... it consists of
- A menu bar with 4 menus, one with two levels
-
On Thu, 5 Mar 2009, Fabian Jakobs wrote:
> Dietrich Streifert schrieb:
>> @Fabian:
>>
>> is there any other problem in using prototype besides the $-variable
>> clash in 0.7.x?
> None I'm aware of but I never actually tried it. Maybe Fritz can comment
> on that.
I didn't find any problems so far.
Dietrich Streifert schrieb:
> @Fabian:
>
> is there any other problem in using prototype besides the $-variable
> clash in 0.7.x?
None I'm aware of but I never actually tried it. Maybe Fritz can comment
on that.
Best Fabian
--
Fabian Jakobs
JavaScript Framework Developer
1&1 Internet AG - We
@Fabian:
is there any other problem in using prototype besides the $-variable
clash in 0.7.x?
Fabian Jakobs schrieb:
Hi Fritz,
are you sure you still need this for 0.8? The problem in 0.7 was they
way the string optimizer worked. This has been changed significantly in
0.8 and should not po
Hi Fritz!
Very valuable informations!
My impression is that your application seems to be relativly complex.
And you did a migration from 0.7.x to 0.8.x.
It would be very helpfull if you could give us a time cost estimation
for the migration process.
Thanks allot!
Fritz Zaucker schrieb:
Hi Jean-Baptiste,
> Hi,
>
> I'm sorry, this is a little bit out of scope as it doesn't concern
> qooxdoo directly.
>
> I'm looking for a javascript lexer/parser for the Java world.
> I like SableCC and I was seeking for a javascript grammar for SableCC,
> but I never found it.
>
> So, what Java
Me again,
* Gereon A. Frey [090304 16:58]:
> * Gereon A. Frey [090304 14:33]:
> Further investigation gave further insight:
> This can be reproduced with the following (everything done with
> 0.8.2-pre):
> - created inline application:
> /qooxdoo-0.8.2-pre-sdk/tool/bin/create-application.py -n
43 matches
Mail list logo