Hi Oscar,
Thanks a bunch for replying. I've had about 10 posts now and i've not
gotten a single reply. Thanks for your time! :)

I get what you're doing but if i'm getting data from a remote object
how would i display it? Hers's what i have thus far (and you'll have
to excuse my beginner skills here):

                <mx:DataGrid
                        id="masterList"
                        doubleClickEnabled="true" 
                        
doubleClick="this.currentIndex=this.masterList.selectedIndex;
if(this.masterList.selectedItem!=null) { WindowManager.add(
getDetailComponent(this.masterList.selectedItem.ProductionID), this,
false ); }" 
                        width="100%" height="100%" top="0" left="0" right="0" 
bottom="0">
                        <mx:columns>
                                <mx:DataGridColumn dataField="ProductionTitle"
headerText="Production Title" />
                                <mx:DataGridColumn dataField="ProductionType"
headerText="Production Type" />
                                <mx:DataGridColumn dataField="Description" 
headerText="Description">
                                <mx:itemRenderer>
                                <mx:Component>
                                        <mx:Label height="100">
                                                <mx:htmlText>
                                                        How do i bind 
Description data here?
                                                </mx:htmlText>
                                        </mx:Label>
                                </mx:Component>
                        </mx:itemRenderer>
                </mx:DataGridColumn>
                        </mx:columns>
                </mx:DataGrid>

The data in the Description field is all in HTML, and i want to
display it as rendered HTML rather than plain text.
Thanks again,
David






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