Re: [qooxdoo-devel] Table Sorting Issue & Resolution for 0.7 alpha.

2007-05-15 Thread Derrell . Lipman
Mike Rea <[EMAIL PROTECTED]> writes: > Issue: > There's some unexpected behavior occuring within the table sorting > functionality, as performed by the sortByColumn function within > SimpleTableModel.js. The sort is currently case sensitive, which is > probably not intended. Hi Mike, Whether

Re: [qooxdoo-devel] Table Sorting Issue & Resolution for 0.7 alpha.

2007-05-15 Thread James A. Pyrich
Crap, I forgot to mention that my changes were in 0.6.6 (if that wasn't pretty obvious). dperez wrote: > I like case insensitivity for sorting. > I've checked that toLowerCase() works for non-English languages. E.g.: > 'Ñ'.toLowerCase() == 'ñ'

Re: [qooxdoo-devel] Table Sorting Issue & Resolution for 0.7 alpha.

2007-05-15 Thread James A. Pyrich
What I've done is to subclass the SimpleTableModel class and add a property for case-insensitive sort (for my purposes, it defaults to true). I've also added a sortNumeric for strict numeric sort: qx.OO.addProperty({ name: "sortCaseInsensitive", type: "boolean", defaultValue: true }); qx.OO.ad

Re: [qooxdoo-devel] Table Sorting Issue & Resolution for 0.7 alpha.

2007-05-15 Thread dperez
I like case insensitivity for sorting. I've checked that toLowerCase() works for non-English languages. E.g.: 'Ñ'.toLowerCase() == 'ñ' Mike Rea wrote: > > Issue: > There's some unexpected behavior occuring within the table sorting > functionality, as performed by the sortByColumn function wi

[qooxdoo-devel] Table Sorting Issue & Resolution for 0.7 alpha.

2007-05-14 Thread Mike Rea
Issue: There's some unexpected behavior occuring within the table sorting functionality, as performed by the sortByColumn function within SimpleTableModel.js. The sort is currently case sensitive, which is probably not intended. For instance, if a B c is sorted in descending order, it return

Re: [qooxdoo-devel] Table sorting issue

2007-03-07 Thread Jim Hunter
Thanks, I need the behavior so I guess once I get 6.6 running (still having issues in my code, code that does not go through the migration) I'll try and add this to my code. Thanks, Jim On 3/7/07, Til Schneider <[EMAIL PROTECTED]> wrote: Jim Hunter schrieb: > When there is a row selected in t

Re: [qooxdoo-devel] Table sorting issue

2007-03-07 Thread Til Schneider
Jim Hunter schrieb: > When there is a row selected in the table and the user clicks a column > header to sort it, the selected row goes away (no more selected row) and > the highlighted row moves. This doesn't sound like a big deal until you > have multiple grids on a page and the data from one

[qooxdoo-devel] Table sorting issue

2007-02-06 Thread Jim Hunter
When there is a row selected in the table and the user clicks a column header to sort it, the selected row goes away (no more selected row) and the highlighted row moves. This doesn't sound like a big deal until you have multiple grids on a page and the data from one grid is dependent on the selec