Re: [qooxdoo-devel] Setting own table header renderers are very slow in big tables

2014-01-30 Thread sts.wbs
Hi, Chris! Please play around with my example. It's a modification of the Playground example. You can copy my code in the Playground. At the top of the code there is a constant named "columnCount". This is the number of columns for the table and there will also the same number of header render

[qooxdoo-devel] Setting own table header renderers are very slow in big tables

2014-01-29 Thread sts.wbs
qooxdoo 3.5 I'm using qx.ui.table.Table and want to set my own header renderers. In small tables this doesn't make problems but with more columns the setting process slows down exponentially, because on every change of a renderer all the existing header cells are updated. The updates seems to go li

Re: [qooxdoo-devel] Tooltip on the table cell

2012-12-13 Thread sts.wbs
Massimo shows a nice way to solve this problem - thanks to him for that. I picked up this idea and find a good solution without creating a new tooltip object. You need just a mouse move listener on the table. I split this in three functions because of reusability. The member variables "_curTtRow" a

[qooxdoo-devel] qx.ui.form.RadioButtonGroup has a poor focus handling

2012-11-09 Thread sts.wbs
If you change the selection of a qx.ui.form.RadioButtonGroup by keyboard the focused item will be maintained. On pressing the space bar, the selection will jump back to the previously selected item (the still focused item). This is a bug and not a feature, isn't it? -- View this message in cont

[qooxdoo-devel] qx.ui.basic.Image should be improved

2012-10-01 Thread sts.wbs
The qx.ui.basic.Image knows about the original image dimension in the *private* members /__width/ and /__height/. Only derived classes can access this values by calling the *protected* function /_getContentHint/. The "loaded" event is fired *too early* (the dimension is not applied so far) and only

Re: [qooxdoo-devel] How to create a real modal window?

2012-06-01 Thread sts.wbs
Ok, I found the Dialog contribution. Many thanks, sts -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-create-a-real-modal-window-tp7580188p7580236.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] How to create a real modal window?

2012-06-01 Thread sts.wbs
I tried to find the Dialog contribution. I can't find it. Where exactly can I find it? I'm using qooxdoo-1.6-sdk. - - - By the way, here is a sample how my MessageBox usage now looks like. In this sample the call jumps from one function to the other. (_test -> _test1 -> _test2 -> nowhere) The fun

Re: [qooxdoo-devel] How to create a real modal window?

2012-05-31 Thread sts.wbs
I'm writing a "MessageBox" dialog for showing information/warning/error/confirmation. We all know them from Windows. The JavaScript alert/confirm box is deprecated and not very pretty and I didn't find a replacement in qooxdoo. My MessageBox is complete, but just doesn't wait until the answer of th

Re: [qooxdoo-devel] How to create a real modal window?

2012-05-31 Thread sts.wbs
I mean a behavior like the deprecated alert box has. It shows a box and waits for a press on an button to close the box and continue operation. Maybe I could wait within a loop, but then I need a function to keep the browser alive. How does the alert box work inside? Thanks, sts -- View this m