Re: [qooxdoo-devel] Re mote Table sorting doesn't work

2008-02-01 Thread kanugula
Thank you Derell. I was about to anounce my mistake. I just saw your reply. Thank you. I put my overriding method in wrong class. My apologies. I am calling tableModel.setColumnSortable(columnIndex, true). I will post my results(good or bad) in my next post. Thank you. Kanugula. Derrell L

Re: [qooxdoo-devel] Re mote Table sorting doesn't work

2008-02-01 Thread Derrell Lipman
On Feb 1, 2008 10:04 PM, kanugula <[EMAIL PROTECTED]> wrote: > > Thanks for your reply. > > I have overriden that method. But my overriding method is not called at all. > Is there any way to implement polymorphism without directly changing the sdk > code in Remote.js. > > My overriding method in M

Re: [qooxdoo-devel] Re mote Table sorting doesn't work

2008-02-01 Thread kanugula
Thanks for your reply. I have overriden that method. But my overriding method is not called at all. Is there any way to implement polymorphism without directly changing the sdk code in Remote.js. My overriding method in MyRemoteTable.js sortByColumn : function(columnIndex, ascending) {

Re: [qooxdoo-devel] Re mote Table sorting doesn't work

2008-02-01 Thread Derrell Lipman
On Feb 1, 2008 5:23 PM, kanugula <[EMAIL PROTECTED]> wrote: > > The Remote Table sorting is not working. Nothing happens when you sort. > > Should I override it and call the super method and implement by own logic by > calling RPC backend? Yes. If you think about it, how would the code running on

Re: [qooxdoo-devel] ColumnEditable feature in Remote Table

2008-02-01 Thread kanugula
I believe it is missing. I copied the following code from Simple.js to MyRemoteModel.js and it works. /** * Sets whether a column is sortable. * * @type member * @param columnIndex {Integer} the column of which to set the sortable state. * @param sortable {Boolean} wheth

[qooxdoo-devel] Re mote Table sorting doesn't work

2008-02-01 Thread kanugula
Hello, Qooxdoo 0.7.3 IE 6 Windows XP The Remote Table sorting is not working. Nothing happens when you sort. I have looked at Remote Table's sortByColumn method. It is not functional like Simple Table Model which makes sense from the following code Remote.js === // overridden sortByColu

Re: [qooxdoo-devel] Layout in qooxdoo 0.8

2008-02-01 Thread Leander Hanwald
Hi Fabian, looks really nice, I hope it will work as good as it sounds :) Also it sounds very logical what you want todo. I also like the Idea of doing things like Qt. It's simply very very good ;) and there IS a "but" As you know I already tried my luck with Weida as an GUI Editor. It wa

Re: [qooxdoo-devel] Layout in qooxdoo 0.8

2008-02-01 Thread Sebastian Werner
Derrell, wait a few minutes please. I am currently finishing my tasks for today and will put it online afterwards. I send an mail to the list when the demo section is up-to-date. Thanks. Sebastian Derrell Lipman schrieb: > On Feb 1, 2008 10:58 AM, Fabian Jakobs <[EMAIL PROTECTED]> wrote: >>

Re: [qooxdoo-devel] Layout in qooxdoo 0.8

2008-02-01 Thread Derrell Lipman
On Feb 1, 2008 10:58 AM, Fabian Jakobs <[EMAIL PROTECTED]> wrote: > Hi, > > everyone interested in the layout concepts of 0.8 should take a look at > the slides of the presentation I did for a the qooxdoo team at 1&1 on > Monday. > > > > > Best F

[qooxdoo-devel] ColumnEditable feature in Remote Table

2008-02-01 Thread kanugula
Hello, I don't see setCoulmnEditable() feature for Remote Table. Is it by design or missing? I have a work around to that by creating a properties daialogue when somebody double clicks a row. But still inline editing on the Row is a nice option to the users. Thanks. Kanugula. -- View this messa

[qooxdoo-devel] Layout in qooxdoo 0.8

2008-02-01 Thread Fabian Jakobs
Hi, everyone interested in the layout concepts of 0.8 should take a look at the slides of the presentation I did for a the qooxdoo team at 1&1 on Monday. Best Fabian -- Fabian Jakobs JavaScript Framework Developer 1&1 Internet AG Brauers

Re: [qooxdoo-devel] upload-widget

2008-02-01 Thread Tobias Koller (GERMO GmbH)
Hi dietrich, it works! thanks a lot! Tobias Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Dietrich Streifert Gesendet: Freitag, 1. Februar 2008 12:08 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] upload-widget @Tobias: Did you find some time to test the di

Re: [qooxdoo-devel] Dynamically Increase the height of particular row

2008-02-01 Thread derrell . lipman
You can't quite yet. I'm currently working on variable row height but it will be at least a number of weeks before it will be ready for alpha testing. Derrell On 2/1/08, deepakraj <[EMAIL PROTECTED]> wrote: > > Hi all, > >How can we increase the height of a particular row? > > regards,

Re: [qooxdoo-devel] upload-widget

2008-02-01 Thread Tobias Koller (GERMO GmbH)
Hi, sorry I didn't have the time. I will try to test it today ;) Tobias Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Dietrich Streifert Gesendet: Freitag, 1. Februar 2008 12:08 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] upload-widget @Tobias: Did you

Re: [qooxdoo-devel] upload-widget

2008-02-01 Thread Dietrich Streifert
@Tobias: Did you find some time to test the disable patch? Tobias Koller (GERMO GmbH) schrieb: I made a workaround. When I disable the Widget I also put an transparent Canvaslayout over the whole Upload-widget. But this is just a dirty workaround ;) I will check your patch. Thanks

Re: [qooxdoo-devel] Remove Row from Table Model

2008-02-01 Thread Tobias Koller (GERMO GmbH)
Hi, I delete rows like this: var rowNr = myTable.getSelectionModel().getLeadSelectionIndex(); myTable.getTableModel().removeRows(rowNr, 1); Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Dan Trif Gesendet: Freitag, 1. Februar 2008 11:32

[qooxdoo-devel] Remove Row from Table Model

2008-02-01 Thread Dan Trif
Hi, I'm using the following code to remove selected row from a table: var tableModel = new qx.ui.table.model.Simple(); var table = new qx.ui.table.Table(tableModel, tableBehaviour); function removeSelectedRow(){ table.getSelectionModel().iterateSelection(function(index){

Re: [qooxdoo-devel] Table Row Colors

2008-02-01 Thread Jim Hunter
So far, the quick and dirty method I am using works because our grids are all read only, no editing allowed. And the previous fix I had in place before I upgraded the source code to 0.7.3 worked well for months, no issues at all. We are working on a new grid that will have editing but it will not h