On 11/29/11 3:31 PM, John Fabiani wrote:
> The problem with isAnyChanged is it requires a specific bizobject.  I want to
> know if any bizobject has changed.  More like self.Form.isAnyChanged()

class MyForm(...):
   def isAnyChanged(self):
     for biz in self.bizobjs:  ## you need to manually put your bizobjs in here
       if biz.isAnyChanged():
         return True
     return False

Paul
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[email protected]

Reply via email to