RE: [flexcoders] Can we some how create HTML table in Flex

2007-01-15 Thread Dimitrios Gianninas
If you are just looking to display a list of names (or items actually) use the List control. In the Flex world, we forget about Table tags, all bad :) Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Can we some how create HTML table in Flex

2007-01-15 Thread Marc Donkers
Hi KP, Depending on your wishes, you can use a grid, in combination with a repeater. Greetz, Marc On 1/15/07, KP [EMAIL PROTECTED] wrote: Hi All, As per the subject line .Can we create the html table structure as given below in FLEX using htmlText attribute of text area. I know that

RE: [flexcoders] Can we some how create HTML table in Flex

2007-01-15 Thread Van De Velde Hans
@yahoogroups.com Subject: Re: [flexcoders] Can we some how create HTML table in Flex Try using the mx:datagrid tag. It'll generate a table for you, just like in html. If you want to display pictures etc in your datagrid, you will have to define your own datagrid cellrenderer.