> Is there any data in the contacts bizobj at this point? If not, the > FK param will be empty (None), and that might explain the missing parameter > in the SQL statement. > > > -- Ed > Leafe<http://leafe.com/archives/byMID/[email protected]> >
Thanks for the quick reply Ed, but now I'm even more puzzled. This was partially my bad. The issue I had with rev 6233 as discussed in this thread is the issue: http://old.nabble.com/Revision-6233-broke-something-td30375585.html Seems I inadvertantly called up the wrong revision of one of my apps files, because reverting to Rev 6232 make everything ok, but now when I re apply the fix, it requiries the entire dataset. This was the previous fix Thanks Jacek. You pointed me in the right direction with your replay: I changed: ## *!* ## Dabo Code ID: dDropdownList-dPanel def afterInit(self): biz = self.Form.getBizobj("builders") names, pks = biz.getBuilders() self.Choices = names self.Keys = pks self.ValueMode = "Key" to: ## *!* ## Dabo Code ID: dDropdownList-dPanel def afterInit(self): biz = self.Form.getBizobj("builders") names, pks = biz.getBuilders() self.Choices = names self.Keys = pks self.ValueMode = "Key" self.Form.requery() <<<<<<<<<---------------------------------------- Added This line Guess I have some more figuring to do. Thanks again Ed Carey --- 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]
