Hi all,
I'm now looking for charting library for qooxdoo. I need something that is
build purely using JS/CSS, no flash or any other plugins requirement. I'm
currently evaluating ProtoVis, HighCharts, and JSCharts. But since I'm new to
both qooxdoo and JS, I don't know which library that can be
Just did implemented some GUI improvements for the famous apropos dialog:
http://github.com/downloads/kennytilton/qooxlisp/apropos-kt2.jpg
The "Search" button is gone, just hit return. duh
The search string is no longer a combo box where one can recall prior
searches. Talk about overkill. This
On 5 Jun 2010, at 21:23, Petr Kobalíček wrote:
> The order of methods isn't important. Javascript object is something
> like hash table with access O(1).
I see. Though that slightly difference performance keep puzzling me.
> And about second question ;) It's purely your choice. I'm using
> qxloa
Hi Bee,
The order of methods isn't important. Javascript object is something
like hash table with access O(1).
And about second question ;) It's purely your choice. I'm using
qxloader to load everything, but if you need some library to be
included before qooxdoo or before qxloader is invoked then
On 5 Jun 2010, at 18:06, Petr Kobalíček wrote:
> qxscripts = [
> qxsettings["qx.path"] + "/script/qx-" + qxsettings["qx.mode"] + ".js"
> ];
Another question (again)... :D
If I want to include another (non-qooxdoo) js script file, say codepress or
highcharts, where should I put them? Within qxsc
On 5 Jun 2010, at 18:06, Petr Kobalíček wrote:
> qxscripts = [
> qxsettings["qx.path"] + "/script/qx-" + qxsettings["qx.mode"] + ".js"
> ];
>
> qxloader.run({
> scripts: qxscripts,
>
> finish: function() {
>// your code here...
> }
> });
That's neater. Thanks! :)
Another question... I h
Hi Bee,
I have another improvement, it's some time I wrote qxloader so I
forgot for correct syntax, you can rearrange your code to:
qxscripts = [
qxsettings["qx.path"] + "/script/qx-" + qxsettings["qx.mode"] + ".js"
];
qxloader.run({
scripts: qxscripts,
finish: function() {
// your cod