I'm admittedly new at Python and programming in general but not totally without understanding. However, I'm am completely and utterly frustrated with how I'm supposed to handle the following situation:
1) A single form 2) Multiple tabs (dPages) 3) Each tab with it's own table and associated bizObj How in the world am I supposed to assign a bizObj to a dPage/dGrid? I've spent literally hours banging my head against the wall, searching this newsgroup, reading the API docs, the tutorials, screencasts, etc. What am I missing?! I've tried to do the following in dForm.createBizobs(): bizAddEvent = self.Application.biz.EventBizobj(conn, DataSource="AddEvent") self.addBizobj(bizAddEvent) self.bizAddEventDS = bizAddEvent.DataSource bizModifyEvent = self.Application.biz.EventBizobj(conn, DataSource="ModifyEvent") self.addBizobj(bizModifyEvent) self.bizModifyEventDS = bizModifyEvent.DataSource bizModifyExhibitor = self.Application.biz.ExhibitorBizobj(conn, DataSource="ModifyExhibitor") self.addBizobj(bizModifyExhibitor) self.bizModifyExhibitorDS = bizModifyExhibitor.DataSource The idea being that I would use the self.??????DS object in the dGrid.DataSource property but I get no data. Am I even close to doing this the right way? Any guidance would be greatly appreciated and many thanks in advance! Aaron L. Carlow --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html --- _______________________________________________ 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]
