jvandal wrote: > I have searched the folder i created in appWizard. I cannot find what I would > expect a "class ZooBizobj(dabo.biz.dbBizobj)". I find Zoo and Species and > Base but ??? > that contains self.AddField ="
Zoo.py should have your Zoo class based on datanav.Bizobj. Species.py should have your Species class based on datanav.Bizobj. datanav.Bizobj is based on dabo.biz.dBizobj. AppWizard generates bizobj classes that don't call addField() directly, but instead define the self.DataStructure and then call the self.addFieldsFromDataStructure() method. All the essential information to send to addField() already exists in DataStructure, so why be redundant? 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]
