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

2008-02-05 Thread kanugula
Yes. You are right. I used 0.7.3 only. I cleaned up my sdk workspace. Downloaded it again. I see correct event in the SDK. I must have messed it while trying to figure out my sorting problem. My apoligies again for spam. Thanks for invaluable time. Thanks. Kanugula. kanugula wrote: > > Hello

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

2008-02-05 Thread Derrell Lipman
On Feb 5, 2008 3:15 PM, kanugula <[EMAIL PROTECTED]> wrote: > > It took a while to figure out my sorting problem (the good news is I am > diving into source code and finding my problems). > > Ideally, the sortByColumn functionality in Remote.js is enough to fire the > _loadRowData() function. > I t

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

2008-02-05 Thread kanugula
It took a while to figure out my sorting problem (the good news is I am diving into source code and finding my problems). Ideally, the sortByColumn functionality in Remote.js is enough to fire the _loadRowData() function. I think it is dispatching a wrong event. I had to override that method to

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

[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