Adrian Klaver wrote: > Seem you have to explicitly add the fields. I thought setting DataStructure > took > care of that?
The *only* function of setting DataStructure is to tell Dabo which fields are of which type, which is the primary key, and which fields come from what tables. By setting DataStructure, you are explicitly telling Dabo this information and Dabo will rely on that instead of trying to get the information from the backend database. When you don't set DataStructure explicitly, querying DataStructure results in information gotten by querying the backend database. In my base bizobj, I've added a addFieldsFromDataStructure() function that calls addFields() for each field listed in the explicitly-set DataStructure, which results in less redundancy. 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]
