RE: [flexcoders] DataGridColumn display issue

2005-10-17 Thread Allen Manning
@yahoogroups.com Subject: Re: [flexcoders] DataGridColumn display issue Allen Manning wrote: >Custom cell renderer might be a bit OTT for this, labelFunction would be a >good start. > > A cell renderer for an object path is reusable, whereas with using a label function you have to create a new

Re: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Darron J. Schall
Allen Manning wrote: >Custom cell renderer might be a bit OTT for this, labelFunction would be a >good start. > > A cell renderer for an object path is reusable, whereas with using a label function you have to create a new function for each path. It may be over the top for this particular ca

RE: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Tracy Spratt
@yahoogroups.com] On Behalf Of Husain Kitabi Sent: Friday, October 14, 2005 12:22 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] DataGridColumn display issue   OTT? Please tell me about labelFunction.   Thanks Husain Allen Manning <[EMAIL PROTECTED]> wrote: Custo

RE: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Husain Kitabi
OTT? Please tell me about labelFunction.   Thanks HusainAllen Manning <[EMAIL PROTECTED]> wrote: Custom cell renderer might be a bit OTT for this, labelFunction would be agood start.Best,Allen-Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] OnBehalf Of Darron

RE: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Allen Manning
: [flexcoders] DataGridColumn display issue Husain Kitabi wrote: > I tried to use >headerText="Classgroup Venue" /> > headerText="Classgroup Capacity"/> > headerText="Module"/> > > > The first 2 columns are fine. But module.mo

Re: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Darron J. Schall
Husain Kitabi wrote: > I tried to use >headerText="Classgroup Venue" /> > headerText="Classgroup Capacity"/> > headerText="Module"/> > > > The first 2 columns are fine. But module.moduleName - it does not > display anything. Has anybody done something like this. Pl advise. You n

Re: [flexcoders] DataGridColumn display issue

2005-10-14 Thread Niklas Richardson
You might have to use a label function or a cell rendered to display the deeply nested data. On 14/10/05, Husain Kitabi <[EMAIL PROTECTED]> wrote: > > Hi > I have a value object > > ClassgroupVO.as > > classgroupVenue:String; > classgroupCapacity:String > module:ModuleVO > --

[flexcoders] DataGridColumn display issue

2005-10-14 Thread Husain Kitabi
Hi I have a value object   ClassgroupVO.as   classgroupVenue:String; classgroupCapacity:String module:ModuleVO -   ModuleVO.as   moduleName:String;       In my datagrid column i want to display moduleName. My dataprovider is an array of ClassgroupVO value objects