On 3/13/06, yaagcur <[EMAIL PROTECTED]> wrote:
> --- In [email protected], "Manish Jethani"
> <[EMAIL PROTECTED]> wrote:
> >
> > On 3/12/06, yaagcur <[EMAIL PROTECTED]> wrote:
>
> >
> > So where exactly does your VBox display the data?  You need to have
> > something like a Label in there.
> >
> >  <mx:Label text="{dataObject[DataGridListData(listData).dataField]}"
>
> ok. There is nothing in livedocs I could find and I could not relate
> the ref docs to the above. As you can tell, I am a bit at sea here.
> Just pasting in tha above gives me a 'undefined property listData error.

Oh, I forgot to add, your renderer needs to implement the
IDropInListItemRenderer interface.

 <VBox implements="mx.controls.listclasses.IDropInListItemRenderer" ...> ...

Or you can simply access the property directly instead of going
through `listData.dataField`

  <mx:Label text="{dataObject.propertyIWantToAccess]}"

> > Does lockedRowCount="2" work?  (I forgot if it starts at 0 or 1)
> >
> Yes it does. Looks good

Okay, so lockedRowCount includes the header of the DataGrid.

Manish


--
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/
 



Reply via email to