Have a look at DataGridColumn.labelFunction in the docs. You can specify a function for the column that returns a concatenation of your two fields.
Doug --- In [email protected], "Jeremy Rottman" <[EMAIL PROTECTED]> wrote: > > I have a cfc function that I am using to search my db and it returns > results as a query. This works fine with my testing. > > The issue that I have run into is. How I can use two returned db > fields in one dg column. > > Right now I am testing this. > > <mx:DataGrid x="10" y="67" id="ASDG" click="" width="85%" height="65%"> > <mx:columns> > <mx:DataGridColumn headerText="Name" columnName="FLD_FULLNAME > FLD_OAFULLNAME"/> > </mx:columns> > </mx:DataGrid> > > The fields I am returning are FLD_FULLNAME AND FLD_OAFULLNAME. > -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

