Re: [dabo-users] Show records by foreign key

2009-09-07 Thread Ed Leafe
On Sep 5, 2009, at 6:06 PM, Emanuele Gesuato wrote: In the grid i've got several calls on self.addColumn which are self explanatory but if i want to add a column for a parent relation ? I've have a grid in which i show the rows of orders but in a column i want to show the description of the

Re: [dabo-users] Show records by foreign key

2009-09-07 Thread Emanuele Gesuato
Thanks for your help, i solved using your advice. Instead of using biz.addField i've added the field in the dataStructure (generated by the appWizard). Is it deprecated to use the AppWizard to generate a skeleton of a working application ? Should i start from scratch ? Thanks On Mon, Sep 7,

Re: [dabo-users] Show records by foreign key

2009-09-07 Thread Ed Leafe
On Sep 7, 2009, at 3:25 PM, Emanuele Gesuato wrote: Is it deprecated to use the AppWizard to generate a skeleton of a working application ? Should i start from scratch ? It's not deprecated; it's ideal for doing simple table maintenance applications quickly. I use several such apps

Re: [dabo-users] Show records by foreign key

2009-09-07 Thread Paul McNett
Ed Leafe wrote: On Sep 7, 2009, at 3:25 PM, Emanuele Gesuato wrote: Is it deprecated to use the AppWizard to generate a skeleton of a working application ? Should i start from scratch ? It's not deprecated; it's ideal for doing simple table maintenance applications quickly. I

Re: [dabo-users] Show records by foreign key

2009-09-06 Thread Emanuele Gesuato
Here is what i'm trying to do. I have two bizobjs: articoli and tipologie. In the grid of articoli i want to show the description of tipologie. The datastructure of articoli table: self.DataStructure = ( (copia_bar, B, False, public.articoli,

Re: [dabo-users] Show records by foreign key

2009-09-06 Thread John
On Sunday 06 September 2009 03:33:23 am Emanuele Gesuato wrote: Here is what i'm trying to do. I have two bizobjs: articoli and tipologie. In the grid of articoli i want to show the description of tipologie. The datastructure of articoli table: self.DataStructure = (

Re: [dabo-users] Show records by foreign key

2009-09-06 Thread Paul McNett
John wrote: To be honest I'm not a appwizard guy and know little about how the code is generated. For example I'm surprized that you are displaying a DataStructure and not the actual bizObject. The DataStructure is the under lying code of a dabo.biz.dBizobj. I think that must be the way

[dabo-users] Show records by foreign key

2009-09-05 Thread Emanuele Gesuato
Hi everyone, I'm a newcomer in dabo community; i've used the application wizard to create a simple mockup of an application which i'm trying to fit with my specific needs. So i'm trying to learn dabo from the generated code. I'm using dabo 0.9.2 in ubuntu linux 9.04. In the grid i've got