Re: [qooxdoo-devel] Table checkbox focus not caught (bug?)

2012-09-11 Thread csfahey
In looking at the source code for qx.ui.table.celleditor.CheckBox in function createCellEditor(), it appears that the solution is the addition of a blur listener on the form checkbox that is created like so: checkbox.addListener( "blur", function(e) { this.tab

Re: [qooxdoo-devel] Clear a tableModel ?

2012-09-11 Thread csfahey
// Here is how I do it. Given. var model = new qx.ui.table.model.Simple( ); var table = new qx.ui.table.Table( model ); // This clears it. model.removeRows( 0, model.getRowCount() ); -- View this message in context: http://qooxdoo.678.n2.nabble.com/Clear-a-tableModel-tp7581283p7581321.html Se

Re: [qooxdoo-devel] Table Row Strike-through

2012-09-11 Thread csfahey
Glad I could help someone out. I looked through the code and played with modifying the style of the row but the problem turned out to be how the table was rendered in the browser and the layers upon layers. You could add the style to the row but as soon as you touched the table, it went away sinc

Re: [qooxdoo-devel] Table's cellClick event fires twice?

2012-09-11 Thread Jan David Wasem
Nice idea, but workaround's workaround does not want to do what we want. Seems the focus has to be disabled before the first event is fired - otherwise the event fires twice again. So i'm forced to do it without the workaround workaround but only with the workaround :) ;) -- View this message in

[qooxdoo-devel] drag&drop table?

2012-09-11 Thread smisonli...@googlemail.com
Hello, i try to move a drag and drop from a list to atable. i need the data from the list and the row of the table when i use this code at the target table table.setDroppable(true); table.addListener("drop", function(e) { alert(e.getRelatedTarget());//Returns NULL alert(e.getOrig

Re: [qooxdoo-devel] Table vertical scrollbar issue

2012-09-11 Thread Mustafa Sak
Hi Franck, please provide us with an playground example http://demo.qooxdoo.org/devel/playground/#Table-ria Thanks Mustafa Von: franck34 [mailto:franck@gmail.com] Gesendet: Dienstag, 11. September 2012 15:46 An: qooxdoo Development Betreff: [qooxdoo-devel] Table vertical scrollbar issue H

[qooxdoo-devel] Table vertical scrollbar issue

2012-09-11 Thread franck34
Hi I'm loading something like 2000 items in a table. The vertical scrollbar does not appear, until i change a value in a cell. Any idea ? Thanks -- Live Security Virtual Conference Exclusive live event will cover all th

Re: [qooxdoo-devel] Table's cellClick event fires twice?

2012-09-11 Thread Fritz Zaucker
On Tue, 11 Sep 2012, Mustafa Sak wrote: > you mena a workaround for the workaround? ;) that's what I meant ... :-) > > @Jan: > > table.addListener('cellClick', function(e){ > table.setShowCellFocusIndicator(false); > tableModel.removeRows(e.getRow(), 1); > table.setShowCellFocusIndicator(true

Re: [qooxdoo-devel] Table's cellClick event fires twice?

2012-09-11 Thread Mustafa Sak
Hi Fritz, you mena a workaround for the workaround? ;) @Jan: table.addListener('cellClick', function(e){ table.setShowCellFocusIndicator(false); tableModel.removeRows(e.getRow(), 1); table.setShowCellFocusIndicator(true); }, this); Not tested, give it a try. Regards Mustafa -Ursprün

Re: [qooxdoo-devel] Table's cellClick event fires twice?

2012-09-11 Thread Fritz Zaucker
Can't you show the selection afterwards again (inside the handler)? Cheers, Fritz On Tue, 11 Sep 2012, Jan David Wasem wrote: > Thank you very much! I've spent hours to find a solution, but no online > source could help me ;) > Workaround works fine, but it's not the best solution not to display

Re: [qooxdoo-devel] Table's cellClick event fires twice?

2012-09-11 Thread Jan David Wasem
Thank you very much! I've spent hours to find a solution, but no online source could help me ;) Workaround works fine, but it's not the best solution not to display which row is selected. So I hope for fixing the problem =) I've reported bug here: http://bugzilla.qooxdoo.org/show_bug.cgi?id=6798

Re: [qooxdoo-devel] Qooxdoo and D3 Crossfilter

2012-09-11 Thread Mustafa Sak
Hi all, crossFilter looks mighty. (@LoremIpsum) A contrib project would be very useful. But for the beginning 689137 could start with a simple qx.ui.embed.Html widget. An example could be like this: // be sure recommended libs by crossFilter was loaded var html1 = "" + " " + "Time of Day

Re: [qooxdoo-devel] Table's cellClick event fires twice?

2012-09-11 Thread Jan David Wasem
I just did some more tests: In all other cells (where if doesn't fit true, of course) the event fires only one time. But after delete of one row the event fires one more. I had allready tested to stop propagation of event, but this didn't solve problem because cellClick does not bubble and stopProp

Re: [qooxdoo-devel] Qooxdoo and D3 Crossfilter

2012-09-11 Thread LoremIpsum
Hi, that should be as simple as creating a new contrib. I'm going to give it a look, this crossfilter library seems very interesting ! LoremIpsum On 09/11/2012 11:34 AM, 689137 wrote: > Hi, > > I am thinking of using the http://square.github.com/crossfilter/ > Crossfilter component (D3 based)

Re: [qooxdoo-devel] I Need a table in Mobile environment

2012-09-11 Thread Christopher Zündorf
Hi Kora, you could create a table with plain HTML. Or you could enhance the qx.ui.mobile.list.List by writing your own renderer. Greetz Christopher Am 11.09.2012 um 11:46 schrieb kora: > Hello, > > I need a table in the Mobile environment but the mobile API does'n support > it. > Has anybo

[qooxdoo-devel] I Need a table in Mobile environment

2012-09-11 Thread kora
Hello, I need a table in the Mobile environment but the mobile API does'n support it. Has anybody a solution ? Cheers Kora -- View this message in context: http://qooxdoo.678.n2.nabble.com/I-Need-a-table-in-Mobile-environment-tp7581302.html Sent from the qooxdoo mailing list archive at Nabb

[qooxdoo-devel] Table's cellClick event fires twice?

2012-09-11 Thread Jan David Wasem
Hi mailing list ;) I built a table. One of its cells in each row shows an image pointing out to be a delete "button" (I couldn't find any possibility to use a real button). If users click on this image cell, the image-containing row should be deletet. It works fine, a cellClick event handles click

[qooxdoo-devel] Qooxdoo and D3 Crossfilter

2012-09-11 Thread 689137
Hi, I am thinking of using the http://square.github.com/crossfilter/ Crossfilter component (D3 based) in my qooxdoo project. As I know, qooxdoo is js only, and the html file is generated by a script. On the other hand Crossfilter (as well as other D3 components) are html+css+js based. Will I be