RE: [flexcoders] Date format in DataGrid?

2008-12-10 Thread Tracy Spratt
labelFunction() and DateFormatter. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Wednesday, December 10, 2008 1:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Date format in DataGrid? I display

Re: [flexcoders] Date Format

2006-09-06 Thread Samuel Reuben
this is a problem and is logged. You can format the date using a Date formatter and set the text of  the DateField to the desired format - for the moment.   Thanks, -sam  On 9/5/06, Travis Anderson <[EMAIL PROTECTED]> wrote: Please tell me what I'm doing wrong here.I've tried many methods

Re: [flexcoders] Date Format

2005-06-23 Thread Tarik Ahmed
Basically function formatme(item):String { return(formatDate.format(item.myDate)); } Joe wrote: >I have a data gris that is producing about 20 rows from a data source. >One of the columns is displaying a date. How do I format that date. > > > > > >

RE: [flexcoders] Date Format

2005-06-23 Thread Abdul Qabiz
Hi, Please search archives at http://www.mail-archive.com/flexcoders%40yahoogroups.com , I have replied some days back... However here it is link: http://weblogs.macromedia.com/mesh/archives/2005/04/sorting_date_fi.cfm -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:

Re: [flexcoders] Date Format

2004-04-28 Thread Paul Beardsell
Thanks Kevin, I'll give it a whirl Kevin Hoyt wrote: Paul, There's a chapter on using the formatters provided with Flex in the Developing Flex Applications documentation. There's great examples of using the tags and various formatting strings. That being said, here's a general snippet that should

RE: [flexcoders] Date Format

2004-04-28 Thread Kevin Hoyt
Paul, There's a chapter on using the formatters provided with Flex in the Developing Flex Applications documentation. There's great examples of using the tags and various formatting strings. That being said, here's a general snippet that should point you in the right direction. Hope this help