On 3/11/06, tobiaspatton <[EMAIL PROTECTED]> wrote: > I take this to mean that my VBox-based list item renderer should > implement this interface, but I don't know how to accomplish this. > If my component were an AS file, it would be simple. But how can an > MXML component implement an interface?
Simply use the "implements" attribute: <VBox implements="mx.controls.listClasses.IDropInListItemRenderer"> ... </VBox> Or you can just reference the DataGrid directly from your item renderer's code (there's no need to implement this interface). 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/

