Użytkownik Vineet Deodhar napisał:
> If multiple 'LinkFields' is not supported , then how do I define
> multiple parents for a child?

Simply, you can't. It's like paramecium, there is only one parent, no more.
But if you need such behaviour, you can override dBizobj.getParams() method,
e.g. for first relation use LinkField ("acid") and for the second addWhere() 
method:

...
        self.addWhere("catid = ?")
...

def getParams(self):
        return (self.biz_cat.getFieldVal("catid"),)

But I never tried this, so there may be additional steps to take.

-- 
Regards
Jacek Kałucki
_______________________________________________
Post Messages to: Dabo-users@leafe.com
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/4ece3646.2040...@rz.onet.pl

Reply via email to