Re: [qooxdoo-devel] TreeVirtual Cell Editing

2009-01-07 Thread Patrick Paskvan
Thanks for your help, Derrell. Bug 1822 has been filed as a table issue. http://bugzilla.qooxdoo.org/show_bug.cgi?id=1822 Pat On Wed, Jan 7, 2009 at 11:42 AM, Derrell Lipman wrote: > On Wed, Jan 7, 2009 at 11:09 AM, Patrick Paskvan > wrote: >> >> Hi List, >> >> In 0.7.3, I had a treevirtual c

Re: [qooxdoo-devel] TreeVirtual Cell Editing

2009-01-07 Thread Derrell Lipman
On Wed, Jan 7, 2009 at 11:09 AM, Patrick Paskvan wrote: > Hi List, > > In 0.7.3, I had a treevirtual control with a couple of editable > columns. I just got around to testing that part of the app in 0.8 > (and 0.8.1), and the editable columns aren't editable any longer. > Using the playground, I

[qooxdoo-devel] TreeVirtual Cell Editing

2009-01-07 Thread Patrick Paskvan
Hi List, In 0.7.3, I had a treevirtual control with a couple of editable columns. I just got around to testing that part of the app in 0.8 (and 0.8.1), and the editable columns aren't editable any longer. Using the playground, I set up this sample: *** START SAMPLE ** var tv

Re: [qooxdoo-devel] TreeVirtual cell editing

2008-05-07 Thread Derrell Lipman
On Wed, May 7, 2008 at 7:39 PM, Bill Adams <[EMAIL PROTECTED]> wrote: > This seems to fix the issue: > > var row = e.getRow(); > var col = e.getColumn(); > tree.startEditing(); > dataModel.setValue(col, row, ''); > > Setting the model to '' gets rid of the shadow. The previously existing > value

Re: [qooxdoo-devel] TreeVirtual cell editing

2008-05-07 Thread Bill Adams
This seems to fix the issue: var row = e.getRow(); var col = e.getColumn(); tree.startEditing(); dataModel.setValue(col, row, ''); Setting the model to '' gets rid of the shadow. The previously existing value is still editable. Let me know of any better techniques. Thanks, Bill -Original

[qooxdoo-devel] TreeVirtual cell editing

2008-05-07 Thread Bill Adams
So editing works correctly on my TreeVirtual, using startEditing(), after using setColumnEditable() on the model. However, when a cell is editing, its text has a white "shadow". It looks like the ghost on an old TV. I'm using 0.7.2. Would upgrading help? Is there another remedy? Thanks, Bill