In the dataGridColumn set cellRenerer="myRenderer", then create a new component based on a container like VBox and name it myRenderer.mxml. Inside this new file add code like:
<?xml version="1.0" encoding="utf-8"?> <mx:VBox xmlns:mx="http://www.macromedia.com/2005/mxml" xmlns="*"> <mx:Link label="Buy" click="mx.core.Application.getURL(dataObject.go,'_blank')"/> </mx:VBox> Here the dataObject represents the bound dataProvider, and .go is a column with (in this case) URL information. Good Luck --- In [email protected], "jagabcdeff" <[EMAIL PROTECTED]> wrote: > > Hi, > > Please let me know how to put button or link bar in DataGridColumn. > > thanks, > > Jagadeesh > ------------------------ Yahoo! Groups Sponsor --------------------~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/2jUsvC/tzNLAA/TtwFAA/nhFolB/TM --------------------------------------------------------------------~-> -- 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/

