Re: [qooxdoo-devel] Table drag drop and cellTap event

2015-11-19 Thread rcosgrove
Hey thanks that's actually quite a bit nicer than my solution it think i'll be using it :) Cheers -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-drag-drop-and-cellTap-event-tp758p7587781.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Table drag drop and cellTap event

2015-11-18 Thread Dietrich Streifert
Hi, my workaround/solution is to add an additional dragstart handler which selects the focused row (code stripped from the production class, untested): _onDragStartSelectRow : function(e) { var row = this.getFocusedRow(); if(qx.lang.Type.isNumber(row)) {

[qooxdoo-devel] Table drag drop and cellTap event

2015-11-17 Thread rcosgrove
Some time ago when qx went from 3.5 to 4 click events in Table (and everywhere) were changed to cellTap events. I noticed at the time on the list there were issues in the List and other places with drag and drop a result of this change which now seem to be resolved. At the time I cobbled

Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-09 Thread Dietrich Streifert
Sorry for that bad playground example. But this worked somehow yesterday. The idea is to attach a pointerdown listener to the blocker of the modal window and close the window in this listener. The problem of my former hack was, that the window has not created the blocker yet. We have to attach

Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-09 Thread John Spackman
Try this version: http://tinyurl.com/oxmqcd8 On 09/10/2015, 06:49, "kirra5" wrote: >Thank you for the reply, but the example is not working and I don't know how >to make it work (there is no dom element). > >So, is the issue with the popup a bug? Should I make a

Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-09 Thread John Spackman
Ah - I think that’s going to be a problem unless you override some fairly fundamental handling code; it’s been a while since I looked at it but as I recall the issue will be that the framework does not distinguish between different types of popup, IE even though from your point of view the

Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-09 Thread kirra5
Thank you very much, but unfortunately, this is not what I am looking for. It is not enough that it looks like an popup, I also need it to behave like one (hides when clicking outside, ). -- View this message in context:

[qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-08 Thread kirra5
Hi I have a small problem. Below is an example. If we place the table on a popup and then open the "column selector" and try to check/uncheck a column in this selector, the popup hides, the table disappears and the "column selector" jumps to left top corner of the screen. It is impossible to use

Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-08 Thread Dietrich Streifert
Just a thought: Use a modal window instead of the popup. Am 08.10.2015 um 15:23 schrieb kirra5: > Hi > > I have a small problem. Below is an example. > > If we place the table on a popup and then open the "column selector" and try > to check/uncheck a column in this selector, the popup hides, the

Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-08 Thread Dietrich Streifert
Just a rough hack: http://tinyurl.com/pm3vb85 Am 08.10.2015 um 16:52 schrieb Dietrich Streifert: > Just a thought: Use a modal window instead of the popup. > > Am 08.10.2015 um 15:23 schrieb kirra5: >> Hi >> >> I have a small problem. Below is an example. >> >> If we place the table on a popup

Re: [qooxdoo-devel] Table "column selector" problem ... is this a bug?

2015-10-08 Thread kirra5
Thank you for the reply, but the example is not working and I don't know how to make it work (there is no dom element). So, is the issue with the popup a bug? Should I make a bug report? Thanks! -- View this message in context:

Re: [qooxdoo-devel] Table vertical alignment

2015-05-04 Thread Johan
Hi, Ok, thanks ! But if a better solution exist... Johan Le 30/04/2015 16:58, Vincent Vandenschrick a écrit : Hi Johan, I just had the same issue yesterday and I couldn't find anything else than overriding the cell renderer and adding a padding-top additional style using the overridden

[qooxdoo-devel] Table vertical alignment

2015-04-30 Thread Johan
Hi ! I have a qx.ui.Table.Table with a text or image in the cell. I need to center (X and Y) all the cells. In my exemple, text-cell is center horizontally but not verticaly.**(code for this is not very clean...) http://tinyurl.com/ohaxzav* *With Decorator.js and apparence.js ? So i need help

Re: [qooxdoo-devel] Table vertical alignment

2015-04-30 Thread Vincent Vandenschrick
Hi Johan, I just had the same issue yesterday and I couldn't find anything else than overriding the cell renderer and adding a padding-top additional style using the overridden _getCellStyle method, e.g. : _getCellStyle: function (cellInfo) { var superStyle = this.base(arguments, cellInfo);

Re: [qooxdoo-devel] Table header problem - maybe a bug?

2015-02-11 Thread Andreas Parusel
Hi, I can reproduce the issue. This is clearly a bug. Please file a bug-report at http://bugzilla.qooxdoo.org. Thanks for paying attention! -Andreas Am 10.02.2015 um 09:08 schrieb kirra5 darja.drofen...@gmail.com: Hi I wanted to ask if this is already a known issue: I am using your

[qooxdoo-devel] Table header problem - maybe a bug?

2015-02-10 Thread kirra5
Hi I wanted to ask if this is already a known issue: I am using your existing playground example to demonstrate the problem (I only made a new small changes, the link is below). I set the columns of the table to editable. Then I hide a couple of columns. It is important to have a table with

Re: [qooxdoo-devel] Table Horizontal ScrollBar Error on Firefox 35.0 with Qx 4.1

2015-01-20 Thread Daniel Wagner
Hi, could you please file a bug report for this regression? Regards, Daniel On 16.01.2015 18:16, Gerald Lo wrote: Hi All, I have upgradeed my application to qx 4.1. I discovered that scrolling on Table which have a horizontal scrollbar using mouse scroll wheel results an error. The

Re: [qooxdoo-devel] Table Horizontal ScrollBar Error on Firefox 35.0 with Qx 4.1

2015-01-20 Thread Gerald Lo
Daniel, Thanks for your reply. I have created a bug report for this issue. Link for the bug report: http://bugzilla.qooxdoo.org/show_bug.cgi?id=8875 Regards, Gerald -- View this message in context:

[qooxdoo-devel] Table Horizontal ScrollBar Error on Firefox 35.0 with Qx 4.1

2015-01-16 Thread Gerald Lo
Hi All, I have upgradeed my application to qx 4.1. I discovered that scrolling on Table which have a horizontal scrollbar using mouse scroll wheel results an error. The horizontal scrollbar would move together with vertical scrollbar. I tried this with a desktop PC with Firefox 35.0. The same

Re: [qooxdoo-devel] table/window little bug?

2014-12-19 Thread rsantiagopaz
Hi. Someone had this problem? I check the example on qooxdoo 4.1 and the problem persist. I have problems in my projects with this one. Is this a known bug? Is there any solution? I dont know how register the bug. tanks On the other hand, I don't want to forget, great 4.1 release. Tanks for your

Re: [qooxdoo-devel] table/window little bug?

2014-12-19 Thread Ivan Pogorelov
Hi, Something wrong with modal window. If you set modal property to false: win.setModal(false); it behaves as expected. Check this out: http://bugzilla.qooxdoo.org/show_bug.cgi?id=8177 http://bugzilla.qooxdoo.org/show_bug.cgi?id=8074 The best regards, Ivan On Sat, Dec 20, 2014 at

[qooxdoo-devel] table/window little bug?

2014-10-25 Thread rsantiagopaz
Hi. (sorry the english) check this little variation from playground table example http://tinyurl.com/psvd7zw click a table cell and use arrow keys or enter for edit. Now click the background outside window, return to window and try selecting table cell and use arrow and enter key. Why dont

[qooxdoo-devel] table bug

2014-09-05 Thread rsantiagopaz
Hi (sorry the english) check this little variation from Playground table sample. http://tinyurl.com/n684k94 Edit consecutive rows from second column with Enter and numeric keys. Now do the same with boolean column. Why the edit jump 2 rows below? With numeric column work fine, with boolean column

Re: [qooxdoo-devel] table bug

2014-09-05 Thread Mustafa Sak
An: qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel] table bug Hi (sorry the english) check this little variation from Playground table sample. http://tinyurl.com/n684k94 Edit consecutive rows from second column with Enter and numeric keys. Now do the same with boolean column. Why

Re: [qooxdoo-devel] table bug

2014-09-05 Thread Mustafa Sak
: Freitag, 5. September 2014 08:30 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] table bug Hi, looks like a bug form e. Please feel free to report a bug. Gruß Mustafa Sak Applications Integration 11 Internet AG Ernst-Frey-Straße 10 DE-76135 Karlsruhe -Ursprüngliche Nachricht- Von

Re: [qooxdoo-devel] Table: Hide column in columnmenu?

2014-08-25 Thread chrisch
That worked for me, thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-Hide-column-in-columnmenu-tp7586046p7586094.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] table scroll / dragdrop bug in IE11

2014-08-20 Thread Jeroen Smit
Hi, Before entering a bug I wanted to check if the following is already a known issue in version 4.0.1 When scrolling with the mouse vertically or horizontally in a table using the scrollbar in IE 11 and the mouse cursor is moved into the table area while down, the table suddenly goes into

[qooxdoo-devel] Table cellediting with DataMap

2014-08-12 Thread Peter Schneider
Hi there, I have a question about the editing of data in a table when I use 'DataMap's for the underlying data storage. I have a table that gets it data from DataMap (setDataAsMapArray). I would like to see any changes done in the editable fields to be reflected in the 'model' (DataMap) and

Re: [qooxdoo-devel] Table cellediting with DataMap

2014-08-12 Thread Mustafa Sak
: Dienstag, 12. August 2014 13:16 An: qooxdoo Development Betreff: [qooxdoo-devel] Table cellediting with DataMap Hi there, I have a question about the editing of data in a table when I use 'DataMap's for the underlying data storage. I have a table that gets it data from DataMap (setDataAsMapArray). I

Re: [qooxdoo-devel] Table cellediting with DataMap

2014-08-12 Thread Peter Schneider
- Von: Peter Schneider [mailto:p.schnei...@tis-gmbh.de] Gesendet: Dienstag, 12. August 2014 13:16 An: qooxdoo Development Betreff: [qooxdoo-devel] Table cellediting with DataMap Hi there, I have a question about the editing of data in a table when I use 'DataMap's for the underlying data

[qooxdoo-devel] Table: Hide column in columnmenu?

2014-08-07 Thread chrisch
I have a table with some columns, for example Id, Name and Address. It should be possible that the user can hide/show the columns Name and Address via the columnmenu, but the column Id should always be shown and should not appear in the columnmenu. Is there a way to hide/not display a column in

Re: [qooxdoo-devel] Table: Hide column in columnmenu?

2014-08-07 Thread Derrell Lipman
Yes, you can do it. Add a listener to your table, for event columnVisibilityMenuCreateEnd which is called after the menu is fully created. The data to that event is a map containing three members: table, menu, columnButton. You can manipulate the menu (by default, a qx.ui.menu.Menu) to add or

Re: [qooxdoo-devel] Table looses focus if cell values are set in changeSelection listener

2014-04-09 Thread Mustafa Sak
in the meantime. Gruß Mustafa Sak Applications Integration 11 Internet AG Ernst-Frey-Straße 10 DE-76135 Karlsruhe -Ursprüngliche Nachricht- Von: danovics [mailto:andrejev...@gmail.com] Gesendet: Dienstag, 8. April 2014 19:37 An: qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel] Table

[qooxdoo-devel] Table looses focus if cell values are set in changeSelection listener

2014-04-08 Thread danovics
A playground example for the issue: http://tinyurl.com/kkhpzyn I would like to have a column in my table in which the cell values depend on the cell's row selected or unselected state. The problem is, that when the cell's value set in the changeSelection listener of selectionModel, the table

[qooxdoo-devel] Table key bindings

2014-02-19 Thread Micha
Hi, I made a table header renderer which generates table header cells with textfields under the label to enter a filter text. The problem is, that the keybindings are changed from the table, that means I cannot enter spaces and cursor movement doesn't work. Also the column gets sorted if I click

Re: [qooxdoo-devel] Table key bindings

2014-02-19 Thread Mustafa Sak
...@fantasymail.de] Gesendet: Mittwoch, 19. Februar 2014 11:15 An: qooxdoo Development Betreff: [qooxdoo-devel] Table key bindings Hi, I made a table header renderer which generates table header cells with textfields under the label to enter a filter text. The problem is, that the keybindings

[qooxdoo-devel] table with filter textfields

2014-02-18 Thread Micha
Hi, I want to have a table (or something similar) with textfields below the headerfiled to enter a filter text. Of course the text fields should be of equal width than the table cells / header fields to which they belong. How to do that? How to generate textfields of the same width as the

[qooxdoo-devel] Table cellediting takes ~1 second

2013-12-05 Thread Defero
Hi, i have a table with about 55 fields inside with a remote table model. Almost all fields are set to be editable. I'm trying to create a smooth and fast editing inside the table but because the way things are set up everytime i press Enter (end edit this cell and move to the bottom one) it

Re: [qooxdoo-devel] Table

2013-09-08 Thread dan
Hi Luc. The Table is indeed very mighty, but as you could see some features are not implemented directly. But most of the the work should done in another place any way. Expect table mostly all our new widgets are abel to be bound with a model. On models or even on an partial copy of them filter

Re: [qooxdoo-devel] Table row bind

2013-08-26 Thread Christian Hagendorn
Hi, no, the table doesn't support data-binding for this case. Using listeners is the only way. Cheers, Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-row-bind-tp7584456p7584465.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Table row bind

2013-08-26 Thread Michael Elsdörfer
Here's a controller that you can use for databinding: https://gist.github.com/miracle2k/5876245 textfield.bind('value', tableController.selection[0], 'someModelProperty') should work. Michael Le 24/08/2013 16:38, woprandi a écrit : Hi, Does exist a easy way to bind a table row to a form

Re: [qooxdoo-devel] Table row bind

2013-08-26 Thread woprandi
I'll see that. Thanks for answers 2013/8/26 Christian Hagendorn [via qooxdoo] ml-node+s678n7584465...@n2.nabble.com Hi, no, the table doesn't support data-binding for this case. Using listeners is the only way. Cheers, Chris -- If you reply to this email,

[qooxdoo-devel] Table row bind

2013-08-24 Thread woprandi
Hi, Does exist a easy way to bind a table row to a form (for example a textfield for each table column). I'd like to fill my textfields with the selected row. Actually I did that with listener but I'd like to use binding. Thanks, -- View this message in context:

[qooxdoo-devel] Table - Default CellRenderer implementation doesn't work as documented

2013-07-25 Thread Petr Kobalíček
Hi devs, I'm using a table and I tried to use some cellrenderers provided by qooxdoo, but I don't see any styles applied. What I'm trying is to have 'bold' style applied to all cells in a specific column. String cell-renderer has four options according to the documentation: -

Re: [qooxdoo-devel] Table - Default CellRenderer implementation doesn't work as documented

2013-07-25 Thread Mustafa Sak
: Donnerstag, 25. Juli 2013 09:32 An: qooxdoo Development Betreff: [qooxdoo-devel] Table - Default CellRenderer implementation doesn't work as documented Hi devs, I'm using a table and I tried to use some cellrenderers provided by qooxdoo, but I don't see any styles applied. What I'm trying is to have

Re: [qooxdoo-devel] Table - Default CellRenderer implementation doesn't work as documented

2013-07-25 Thread Mustafa Sak
An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Table - Default CellRenderer implementation doesn't work as documented Hi Petr, this is really a bug http://bugs.qooxdoo.org/show_bug.cgi?id=7600 I will fix it in a few minutes and report here. Gruß Mustafa Sak Applications Integration 11 Internet

Re: [qooxdoo-devel] Table column resize problem in IE

2013-05-06 Thread Andreas Parusel
Hi Tobias, Thank you very much for your helpful comment. I can verify that the cursor is not working as expected in IE 10. The behavior is exactly as you described when trying to resize the leftmost or rightmost column. When trying to resize inner columns, I didn't get any resize-cursor at

Re: [qooxdoo-devel] Table column resize problem in IE

2013-05-06 Thread Tobias Koller (GERMO GmbH)
Hi Andreas, thanks for your answer. I opened a bug report. http://bugzilla.qooxdoo.org/show_bug.cgi?id=7386 Tobi Von: Andreas Parusel [mailto:andreas.paru...@1und1.de] Gesendet: Montag, 6. Mai 2013 10:03 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Table column resize problem in IE Hi

Re: [qooxdoo-devel] Table column resize problem in IE

2013-05-06 Thread Andreas Parusel
10:03 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Table column resize problem in IE Hi Tobias, Thank you very much for your helpful comment. I can verify that the cursor is not working as expected in IE 10. The behavior is exactly as you described when trying to resize the leftmost

[qooxdoo-devel] Table column resize problem in IE

2013-05-03 Thread Tobias Koller (GERMO GmbH)
Hi, I have a problem with my table-widget. In firefox everything is fine. In IE (only tried it with version 10) the mouse-cursor only change to resize when I move it to the top or bottom of the table-header-cell. I can still resize with the pointer-cursor but if it doesn't change to resize

[qooxdoo-devel] Table filtering

2013-04-10 Thread Benjamin Dreux
Hi, I'm using a filter table model to create a table where the content is filtered. I've noticed that when i set a filter, and then change the data set, the filters are removed. I don't understand why filters are removed. I will modify my app to re apply the filter. But i would like to know why

Re: [qooxdoo-devel] Table with interval refreshes JSON data - memory leak

2013-03-28 Thread Nathanial Byrnes
Thanks Martin! That seems to have done it. Regards, Nate On Mar 25, 2013, at 5:19 AM, Martin Wittemann wrote: Hey, after taking a quick look at your code, I did see that you are not properly disposing the data array. The lines

Re: [qooxdoo-devel] Table with interval refreshes JSON data - memory leak

2013-03-25 Thread Martin Wittemann
Hey, after taking a quick look at your code, I did see that you are not properly disposing the data array. The lines this._disposeArray(old); delete old; old = null; should all be replaced by a single

[qooxdoo-devel] Table with interval refreshes JSON data - memory leak

2013-03-19 Thread Nathanial Byrnes
Hello, I have a class (DataTable) that extends Window whose only widget is a table. DataTable has a property called data that is bound to a JSON data store. I have an interval timer set up that triggers a refresh of the data store. The property data has an apply function which sets the

Re: [qooxdoo-devel] Table font problem

2013-01-30 Thread Larry K Blische
I have noticed that the font style info is restored in the table cell divs if I disable optimizations for the build version. I did this by adding: OPTIMIZE : [] in the let section of config.json for the mytest project provided by Krull. Unfortunately, I do not know how to debug the

Re: [qooxdoo-devel] Table columns autosizing

2013-01-28 Thread Christopher Zündorf
This might help you: http://demo.qooxdoo.org/devel/demobrowser/#table~Table_Resize_Columns.html Am 25.01.2013 um 15:27 schrieb Michal Dvořák: Hello again, another part of my problem is that i'm trying to autosize columns in the table, according to data in the table. I'm looking simply for a

Re: [qooxdoo-devel] Table columns autosizing

2013-01-28 Thread Michal Dvořák
Thanks for reply, althou its not what i was looking for. As I searched thru the net, i found only one reply: Not possible atm. So i decided not to dig into it at this time, one will simply set widths manually for every table.. Mikee On Mon, Jan 28, 2013 at 10:13 AM, Christopher Zündorf

[qooxdoo-devel] Table columns autosizing

2013-01-25 Thread Michal Dvořák
Hello again, another part of my problem is that i'm trying to autosize columns in the table, according to *data *in the table. I'm looking simply for a function autoSize(). If it would autosize columns only according to a visible data, it would be fine by me. Thanks for any hints, this is

[qooxdoo-devel] Table Header cell label

2013-01-16 Thread Jim Hunter
I have been digging through the docs but I can't find a way to get a handle on the Label that is in the column header of a table. I need to interogate the SizeHint to see if it is taller then the header in order to make sure that all information is visible. I found a post where someone created a

Re: [qooxdoo-devel] Table remote model problem

2012-12-30 Thread Ivan Pogorelov
...@gmail.com] Sent: Thursday, December 27, 2012 5:51 PM To: qooxdoo Development Subject: [qooxdoo-devel] Table remote model problem Hi, In my Qooxdoo 2.1 desktop application I have several tables using the remote model and they work fine. I have one case though, where the user can select

Re: [qooxdoo-devel] Table remote model problem

2012-12-28 Thread Alexander Steitz
Hi, is it possible for you to create a sample application which shows this issue reproducible? Regards, Alex -Original Message- From: Elemer [mailto:elp...@gmail.com] Sent: Thursday, December 27, 2012 5:51 PM To: qooxdoo Development Subject: [qooxdoo-devel] Table remote model problem

[qooxdoo-devel] Table remote model problem

2012-12-27 Thread Elemer
Hi, In my Qooxdoo 2.1 desktop application I have several tables using the remote model and they work fine. I have one case though, where the user can select a filter for the data being shown by the table and when the filter is selected I call the table's model reloadData(). My model's

[qooxdoo-devel] Table jsonp-store problem

2012-12-07 Thread niels
Hi, I'm creating a proof of concept with: GUI: a qooxdoo form and table IDE: Eclipse with an .ant script to run python (no command line) Server: tomcat/6 + flexjson as proxy I'm performing crud hibernate queries with an extremely simple entity. It should serve as a perfect Java-qooxdoo example.

Re: [qooxdoo-devel] Table font problem

2012-11-04 Thread Martin Wittemann
Hey, thanks for opening the bug. I took a look at it and it looks fine. Good input for us to check that issue. :) Regards, Martin Am 02.11.2012 um 15:09 schrieb Krull cyrille.dum...@tatexpress.fr: It's the first time that I open a bug report, so don't hesitate to tell me if you need more

Re: [qooxdoo-devel] Table font problem

2012-11-02 Thread Martin Wittemann
Betreff: [qooxdoo-devel] Table font problem Hi all, I'm using qx.ui.table.Table with qooxdoo 2.0.2 No problem when I use generate source. The data, in the table body, look fine div style=font-family: Segoe UI,Candara; font-size: 12px; line-height: 1.4; background-color: rgb(255, 127, 255); border

Re: [qooxdoo-devel] Table font problem

2012-11-02 Thread Krull
Hi Martin, Thanks for reply. OK, I've create a small standalone app and I've opened a bug report. Bug 6957 - Table font problem in mode generate build Krull. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-font-problem-tp7581856p7581874.html Sent from the qooxdoo

Re: [qooxdoo-devel] Table font problem

2012-11-02 Thread Krull
It's the first time that I open a bug report, so don't hesitate to tell me if you need more informations ... Krull -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-font-problem-tp7581856p7581875.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] Table font problem

2012-10-31 Thread Krull
Hi all, I'm using qx.ui.table.Table with qooxdoo 2.0.2 No problem when I use generate source. The data, in the table body, look fine div style=font-family: Segoe UI,Candara; font-size: 12px; line-height: 1.4; background-color: rgb(255, 127, 255); border-bottom: 1px solid rgb(204, 204, 204);

Re: [qooxdoo-devel] Table Column Model and Cell Header Renderer

2012-10-19 Thread Paulo Ferreira
Hi, The problem I saw with overriding the class static was that, as of the moment you did that, and until you restored the default, all tables created, wether they use the Filter Feature or not, we be created with these filter headers. But thanks for your reply, at least I known I was on the

Re: [qooxdoo-devel] Table Column Model and Cell Header Renderer

2012-10-18 Thread Derrell Lipman
On Thu, Oct 18, 2012 at 7:02 AM, Paulo Ferreira p...@sourcenotes.org wrote: As you can see: 1. One possible solution was to override, the qooxdoo class static member qx.ui.table.columnmodel.Basic.DEFAULT_HEADER_RENDERER This is exactly the right way to do it. The reason that there is a

[qooxdoo-devel] Table Column Model and Cell Header Renderer

2012-10-17 Thread Paulo Ferreira
Hi, I've come across a strange situation. I wanted to create a Table with a Text Field in the Column Header and came across the following piece of code in qooxdoo 2.0.2. In the init member qx.ui.table.columnmodel.Basic, I found the following piece of code: var headerRenderer =

Re: [qooxdoo-devel] Table Column Model and Cell Header Renderer

2012-10-17 Thread Joe Stetzer
Are you looking for setHeaderCellRenderer at http://demo.qooxdoo.org/2.0.2/apiviewer/#qx.ui.table.columnmodel.Basic~setHeaderCellRenderer ? On Wed, Oct 17, 2012 at 9:45 AM, Paulo Ferreira p...@sourcenotes.org wrote: Hi, I've come across a strange situation. I wanted to create a Table with

Re: [qooxdoo-devel] Table Column Model and Cell Header Renderer

2012-10-17 Thread Paulo Ferreira
Hi, From what I saw in the code for setHeaderCellRenderer, it only modifies the Header Cell Renderer, after it has been created (i.e. the model initialized), and only on a column by column basis... I actually needed is to initialize (create) all the cells from the same renderer (with the new

Re: [qooxdoo-devel] Table Column Model and Cell Header Renderer

2012-10-17 Thread Derrell Lipman
On Wed, Oct 17, 2012 at 9:45 AM, Paulo Ferreira p...@sourcenotes.org wrote: Hi, I've come across a strange situation. I wanted to create a Table with a Text Field in the Column Header and came across the following piece of code in qooxdoo 2.0.2. In the init member

[qooxdoo-devel] Table Column Resize 'widthChanged' Event

2012-10-13 Thread Joe Stetzer
I'm new to all this, but so far I'm loving what I see. I was looking to prevent column resize behavior and nothing was in the API docs that I saw. I did see an old post from '09 or so that hinted at a possible solution. This is a follow up to that as both my solution for allow resize and the

Re: [qooxdoo-devel] Table in Window not getting Tab keypress

2012-10-11 Thread Daniel Wagner
Window registers itself as a focus root in the constructor: qx.ui.core.FocusHandler.getInstance().addRoot(this); That affects the Tab handling so it might be the right place to start looking. Regards, Daniel On 10/09/2012 08:03 PM, Jim Hunter wrote: I am doing some custom handling of

[qooxdoo-devel] Table in Window not getting Tab keypress

2012-10-09 Thread Jim Hunter
I am doing some custom handling of keystrokes inside of a table I have created. If I test my code in the playground I am able to capture the Tab key and process it. But when I am using the table in my application, and the table is inside a popup Window, my table never gets the Tab key. Instead,

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

2012-09-17 Thread franck34
** ** ** ** You should set cellrenderer with that style property. ** ** Regards Mustafa ** ** *Von:* Mustafa Sak [mailto:mustafa@1und1.de] *Gesendet:* Montag, 17. September 2012 11:05 *An:* franck@gmail.com; qooxdoo Development *Betreff:* Re: [qooxdoo-devel] Table Row Strike-through

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

2012-09-17 Thread Mustafa Sak
this is just a pseudo code. Regards Mustafa Von: franck34 [mailto:franck@gmail.com] Gesendet: Montag, 17. September 2012 11:45 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Table Row Strike-through Dear mustafa, Thanks. my goal is to line-through a row based on cell value. If i've

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

2012-09-17 Thread franck34
-through } ** ** ** ** Please notice this is just a pseudo code. Regards Mustafa ** ** *Von:* franck34 [mailto:franck@gmail.com] *Gesendet:* Montag, 17. September 2012 11:45 *An:* qooxdoo Development *Betreff:* Re: [qooxdoo-devel] Table Row Strike-through

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

2012-09-17 Thread Mustafa Sak
Take a look here http://demo.qooxdoo.org/current/apiviewer/#qx.bom.element.Class Von: franck34 [mailto:franck@gmail.com] Gesendet: Montag, 17. September 2012 12:45 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Table Row Strike-through Thanks, let's try that Right now i'm looking

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

2012-09-17 Thread franck34
@gmail.com] *Gesendet:* Montag, 17. September 2012 12:45 *An:* qooxdoo Development *Betreff:* Re: [qooxdoo-devel] Table Row Strike-through ** ** ** ** Thanks, let's try that ** ** Right now i'm looking for pointers in the manual to play with CSS On Mon, Sep 17, 2012 at 12:05 PM

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

2012-09-17 Thread franck34
Work's like a charm ! Code in my next post. Thanks mustafa -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can

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

2012-09-17 Thread franck34
My CSS: removed .qooxdoo-table-cell { background: url(../source/resource/mast/deleted.png) repeat-x 0px 8px; /* 20px x 1px with red line, 50% transparency , see attachement*/ filter:alpha(opacity=70); -moz-opacity:0.70; opacity: 0.70; } My config.json: source-script : {

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

2012-09-16 Thread franck34
http://stackoverflow.com/questions/2104637/table-decoration-in-qooxdoo On Tue, Sep 11, 2012 at 7:12 PM, csfahey junkm...@faheys.org wrote: 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

Re: [qooxdoo-devel] Table vertical scrollbar issue

2012-09-12 Thread franck34
I was recreating table model each time i add new rows and this scrollbar issue appear because of that ... silly, my fault. Thanks mustafa On Tue, Sep 11, 2012 at 3:45 PM, franck34 franck@gmail.com wrote: Hi I'm loading something like 2000 items in a table. The vertical scrollbar does

[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

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

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

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) {

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

2012-09-10 Thread franck34
Thanks, I'm using it, it work like a charm. Now i'm looking the same thing but for all the row ;) On Tue, Jul 17, 2012 at 10:29 PM, csfahey junkm...@faheys.org wrote: var factory = new qx.ui.table.cellrenderer.Dynamic(factoryFunc); tcm.setDataCellRenderer( 0, factory ); var factoryFunc =

Re: [qooxdoo-devel] Table Column Color

2012-09-06 Thread 689137
Thank you Martin. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-Column-Color-tp7581260p7581264.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Live Security Virtual

[qooxdoo-devel] table liveUpdate ?

2012-08-26 Thread franck34
Hi, i'd like to update many values in a table (model simple), without displaying new values. I'd like to show new value only at the end of my update process. Is there a way to do that ? Btw, i don't need changeData or changeValue to be fired when i setValue, is there a way to disable events ?

Re: [qooxdoo-devel] table liveUpdate ?

2012-08-26 Thread Derrell Lipman
On Sun, Aug 26, 2012 at 7:08 AM, franck34 franck@gmail.com wrote: Hi, i'd like to update many values in a table (model simple), without displaying new values. I'd like to show new value only at the end of my update process. Is there a way to do that ? Sure. There are two ways.

Re: [qooxdoo-devel] table liveUpdate ?

2012-08-26 Thread Fritz Zaucker
Just use setData(newData) Cheers, Fritz Fritz Zaucker Oetiker+Partner AG Aarweg 15 CH-4600 Olten +41 62 775 9903 Am 26.08.2012 um 13:08 schrieb franck34 franck@gmail.com: Hi, i'd like to update many values in a table (model simple), without displaying new values. I'd like to

[qooxdoo-devel] Table challenge

2012-08-12 Thread franck34
Hi the list, Any suggestions to be able to make a Table component like that ? http://snag.gy/4TE8B.jpg :) -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat

Re: [qooxdoo-devel] Table challenge

2012-08-12 Thread Derrell Lipman
On Sun, Aug 12, 2012 at 4:30 AM, franck34 franck@gmail.com wrote: Hi the list, Any suggestions to be able to make a Table component like that ? http://snag.gy/4TE8B.jpg Ifyou're talking about the ability to have some columns fixed, and others horizontally scrolled into view,

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

2012-07-17 Thread csfahey
Never got an answer but came up with something that works at the cell level. Hopefully someone can use this in the future. var table = ... var tcm = table.getTableColumnModel(); // I need to do replacement strings at the cell level as well. var factory = new

[qooxdoo-devel] Table Row Strike-through

2012-07-13 Thread csfahey
I am trying to show if a record has been deleted or not by displaying it with a line-through the entire row. Is there a way to do this with rowrenderer? I have experimented with a table in the playground but none of the CSS styles work. How about cellrenderer? It would seem that the line would

[qooxdoo-devel] Table shows the row number but not the row contents: (with image+code)

2012-06-04 Thread totty
This is how my table looks l.ike: http://qooxdoo.678.n2.nabble.com/file/n7580245/qooxdoo_table_data_not_showing.jpg As you can see my table shows 2 rows and it's right. The I get the data of the rows (you can see in the console [{..}, {...}]) But the table remains empty. What's wrong? My

  1   2   3   4   5   6   7   8   >