Hi,
I could imagine, that this could also be a problem of Javascript debuggers, for
example Firebug in Firefox or the Javascript Console in Chrome.
Have you tested it with a build version and all debuggers off?
I know, that Firebug produce memory leaks in the browser, while developing with
the
Hi Jeff,
Am 28.06.2010 15:45, schrieb jeff:
> var learningobject = new qx.ui.form.TextArea().
> set({
> height:70,
> wrap :true,
> backgroundColor:'#DD',
> decorator: mydecoration
> });
>
> I would like my textarea to auto wrap as user types, rather than have
> the scrollbar turn on. I
Hi,
Below is the sample code for creating a buttton. Can some one please explain
me about
1) where is the instance created for the class "custom.Application"
2) what exactly qx.application.Standalone refer to and why it is used here?
qx.Class.define("custom.Application",
{
extend : qx.applicati
Hi Everyone
I am using a table and I need some kind of special renderer for that table.
Depending on information in the cellvalue the cell should be renderered as
checkbox, image, text or bold text. So I guess I need to extend
qx.ui.table.cellrenderer.Default. But I am not really sure on how to d
Hi Derrel
I maybe didnt explain exaclty what I meant. I want to hide columns header.
And I wonder if I need to set it up by using function setColumns. I
definitely need to have columns Ids. So I wanted to use only one function:
setColumnIds. However this return me an error.
Thanks for the code f
Hi all,
I'm developing an application which you can think of as a point of sale client.
It needs to be running for days without browser restart. I noticed when
starting to test the client that it started to loose performance and consume
the PC:s resources after a few hours. This problem might b
Oh well - polling it is.
Thx for the pointer to qx.io.PartLoader.require - are there any
tutorials/examples which make use of partitioning?
As for the footie, there is a strong case that goal-line technology (or an
extra official at either end) can only help provide more info to the
Referree. H
Hi,
I would like to get the Label of the Header of a column from the column.
How is it possible with Selenium?
Cheers.
Olivier
--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G ph
done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3809 #3809
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/Tree-setModelSelection-problem-tp5223872p5231051.html
Sent from the qooxdoo mailing list archive at Nabble.com.
--
for me.
var learningobject = new qx.ui.form.TextArea().
set({
height:70,
wrap :true,
backgroundColor:'#DD',
decorator: mydecoration
});
I would like my textarea to auto wrap as user types, rather than have
the scrollbar turn on. Is 'wrap' the wrong property - since it does not
seem to h
Never mind - got it :)
var mydecoration = new qx.ui.decoration.Single(1, "solid", "black");
var learningobject = new qx.ui.form.TextArea().
set({
height:70,
wrap :true,
backgroundColor:'#DD',
decorator: mydecoration
});
Thanks anyway.
Jeff
On Mon, 2010-06-28 at 08:56 -0400, jeff wrote:
Not quite what I wanted - Now the border is gone.
I guess I don't understand decorators. Could someone point me to some
info on those. The demo on decorators didn't help much as it was fairly
sparse.
Thanks.
Jeff
On Mon, 2010-06-28 at 11:42 +0200, Alexander Steitz wrote:
> Hi Jeff,
>
> Am 28.06
Hi Werner,
Am 28.06.2010 14:01, schrieb Werner Thie:
> Just took me the better part of the last two hours to sift through the
> source to figure out how to send an event directly to a button. Now I
> want to make sure I'm doing the right thing - does anybody object:
>
> var btn = new qx.ui.form.Bu
panyasan wrote:
>
> Kenneth Tilton wrote:
>> The databinding mechanism also looks a lot hairier than messages, only
>> to provide a less agile tool. Why bother?
>>
>
> Hi Kenny,
>
> I think you underestimate the power of databinding - it is a different
> animal compared with the message syste
Fritz Zaucker wrote:
> I am not talkinf about data binding, just plain events (there are too types,
> one allowing to sent data along). Cheers, Fritz
>
That is still not as loosely-coupled as subscribe/unsubscribe to a
string ID.
kt
--
http://www.stuckonalgebra.com
"The best Algebra tutor
Hi all
Just took me the better part of the last two hours to sift through the
source to figure out how to send an event directly to a button. Now I
want to make sure I'm doing the right thing - does anybody object:
var btn = new qx.ui.form.Button('Test');
btn.addListener("execute", function(e
Kenneth Tilton wrote:
>
> The databinding mechanism also looks a lot hairier than messages, only
> to provide a less agile tool. Why bother?
>
Hi Kenny,
I think you underestimate the power of databinding - it is a different
animal compared with the message system --- which I use myself a lot
On Mon, Jun 28, 2010 at 04:01, Andreas Ecker wrote:
> Hi Derrell,
>
> thanks for bringing your SSVG into attention. It could indeed become an
> unifying layer on top of different renderers (currently Walter Zorn, but
> later maybe also SVG, Canvas, etc.).
>
> Like Marc said, I'd also suggest to c
I am not talkinf about data binding, just plain events (there are too types,
one allowing to sent data along). Cheers, Fritz
--
Fritz Zaucker
Oetiker+Partner AG
Aarweg 15
CH-4600 Olten
+41 62 755 9903
On 28.06.2010, at 12:05, Kenneth Tilton wrote:
>
>
> Fritz Zaucker wrote:
>> I don't see th
Fritz Zaucker wrote:
> I don't see the fundamental difference between custom (data) events and
> messages.
>
> But if somebody has an example for something what can't be done with an event
> and can be done with the message bus or some guideline when to use which this
> would be useful.
>
On 06/28/2010 10:01 AM, Andreas Ecker wrote:
> Hi Derrell,
>
> thanks for bringing your SSVG into attention. It could indeed become an
> unifying layer on top of different renderers (currently Walter Zorn, but
> later maybe also SVG, Canvas, etc.).
>
> Like Marc said, I'd also suggest to create an
Excellent. Thanks.
On Mon, 2010-06-28 at 11:42 +0200, Alexander Steitz wrote:
> Hi Jeff,
>
> Am 28.06.2010 04:10, schrieb jeff:
> > Trying to fill a textarea widget backgroundColor and its leaving a strip
> > at the top which not colored correctly - leaving it white.
> >
> > Anyone seen this and
Hi Jeff,
Am 28.06.2010 04:10, schrieb jeff:
> Trying to fill a textarea widget backgroundColor and its leaving a strip
> at the top which not colored correctly - leaving it white.
>
> Anyone seen this and/or have a solution ?
> On firefox 3.0 on linux .
>
> var learningobject = new qx.ui.form.Text
hello there!
im trying to find out why this happens:
http://demo.qooxdoo.org/current/playground/#%7B%22code%22%3A%20%22%250Avar%2520createRow%2520%253D%2520function%28%2520children%2520%29%250A%257B%250A%2520%2520var%2520row%2520%253D%2520new%2520qx.ui.container.Composite%28%2520new%2520qx.ui.la
problem solved using {width: "x%"} instead of flexing.
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/problems-with-flexing-layout-breaks-tp5229923p5229948.html
Sent from the qooxdoo mailing list archive at Nabble.com.
-
> 1. How do I do async updates back to the qx client? Or do I have to
> implement up a client driven polling mechanism?
Yes. As there is no reversing of client - server roles in HTTP, if you
want to implement server-driven changes, the client either has to send a
request for updates periodiacally
Hi Derrell,
thanks for bringing your SSVG into attention. It could indeed become an
unifying layer on top of different renderers (currently Walter Zorn, but
later maybe also SVG, Canvas, etc.).
Like Marc said, I'd also suggest to create an independent SVG wrapper to
get the most out of the speci
Hi Marc,
your SVG wrapper looks really cool. Nice job! :-)
Thanks for considering to contribute it. I also just contacted you
directly to get you started with a project in qooxdoo-contrib, which
would indeed be an excellent addition.
Bye,
Andreas
--
Andreas Ecker
Project Lead
http://qooxdoo.o
I will, probably tomorrow, I'm not home and I haven't bugzilla password here:)
On Thu, Jun 24, 2010 at 2:01 PM, thron7 wrote:
> Petr,
>
> thanks, please add your thoughts to existing bug#2569. They'll fit there
> nicely.
>
> T.
>
> On 06/24/2010 10:26 AM, Petr Kobalíček wrote:
>> Hi devs,
>>
>> I
> PS/off topic: the only place where I found an example of an event
> declaration was in the framework classes. Maybe custom events would
> benefit from a page in the manual or some example in the demo
> browser.
>
Please open a bug for this.
T.
On 06/25/2010 04:30 PM, Derrell Lipman wrote:
> Marc, this looks nice. We have a contrib that is intended to provide
> scalable vector graphics capabilities in a browser-independent
> fashion, using whatever is the most favorable rendering engine that is
> supported. I haven't worked on it for a
Hi Sid,
that's a bug, could you please open a bug report for that issue.
Thanks,
Chris
Am 25.06.2010 23:54, schrieb sid_curious:
> Hi,
>
> I'm using a tree and I saw that setModelSelection method works only for
> visible tree items or folders. is this a bug or is how is is supposed to
> work?
>
32 matches
Mail list logo