[dabo-users] Bizobj.RowNumChanged

2013-10-28 Thread Ricardo Aráoz
Hi, I have this Bizobj which I am subclassing so I can add special processing when changing rows. I must be doing something wrong but I can't find out what. I need to call self.actualizFoto() whenever the record changes. This is a partial declaration of the Bizobj: ---

Re: [dabo-users] Bizobj.RowNumChanged

2013-10-28 Thread Ed Leafe
On Oct 28, 2013, at 10:13 PM, Ricardo Aráoz wrote: > But with no result. That is, nothing happens, actualizFoto() is not called. That is a UI event. For bizobjs, you should put your logic in the afterPointerMove() method. -- Ed Leafe ___ Post Messa

Re: [dabo-users] Bizobj.RowNumChanged

2013-10-29 Thread Ricardo Aráoz
El 29/10/13 00:25, Ed Leafe escribió: On Oct 28, 2013, at 10:13 PM, Ricardo Aráoz wrote: But with no result. That is, nothing happens, actualizFoto() is not called. That is a UI event. For bizobjs, you should put your logic in the afterPointerMove() method. Thanks Ed, that worked ok. BTW

Re: [dabo-users] Bizobj.RowNumChanged

2013-10-29 Thread Ed Leafe
On Oct 29, 2013, at 7:24 AM, Ricardo Aráoz wrote: > BTW, there is a RowNumChanged event listed for Bizobj in the API > documentation. That will work, but only if the bizobj is the PrimaryBizobj of the form, and it is tied to form-level navigation. -- Ed Leafe ___