[flexcoders] date format according to the location client Browser

2009-06-30 Thread mhbmarcos
Hi!!!, how to display date values with the format according the location client browser?. My app is web. Regards

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

RES: [flexcoders] Date format in DataGrid?

2008-12-10 Thread Luciano Manerich Junior
groups.com [mailto:[EMAIL PROTECTED] Em nome de markflex2007 Enviada em: quarta-feira, 10 de dezembro de 2008 16:48 Para: flexcoders@yahoogroups.com Assunto: [flexcoders] Date format in DataGrid? I display data with DataGrid and dataProvider bind to a arraycollection (dataProvider="{acUsers}"

[flexcoders] Date format in DataGrid?

2008-12-10 Thread markflex2007
I display data with DataGrid and dataProvider bind to a arraycollection (dataProvider="{acUsers}"), one column in the DataGrid is Date field. My question is how to change the Date display format in the DataGrid (like 2008-5-20). Thanks for help Mark

[flexcoders] Date Format

2008-01-28 Thread m.frigge
Hi, is there an easy way in Flex to format a date from "Mon, 17 Dec 2007 22:26:11 +1100" to the users local time? Or would it be better to convert the date during the back end process to a UTC timestamp?? Max

[flexcoders] Date format - internal and external

2007-03-15 Thread darylgmyers
I have a VO which contains a date field formatted as 2007-01-01. This is how the HTTP service retrieves the data. I want to format the date as 01/01/2007 in the display but keep the internal date 2007-01-01 so that I can send the VO back for update. What is the best way to keep the internal

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

[flexcoders] Date Format

2006-09-05 Thread Travis Anderson
Please tell me what I'm doing wrong here. I've tried many methods to get a DateField to display a DD-MMM- format for the selected date. I've tried it through the DateFormatter (tried AS-only and MXML), I've tried it by just adding "formatString" to the DateField. When I try to use "labelFunct

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
:[EMAIL PROTECTED] On Behalf Of Joe Sent: Thursday, June 23, 2005 11:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Date Format 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. -- Flexcoders

[flexcoders] Date Format

2005-06-23 Thread Joe
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. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40

Re: [flexcoders] Date Format

2004-04-28 Thread Paul Beardsell
general snippet that should point you in the right direction. Hope this helps, Kevin > -Original Message- > From: Paul Beardsell [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 28, 2004 6:46 AM > To: Flex > Subject: [flexcoders] Date Format > > Hi Guys, > > Any ide

RE: [flexcoders] Date Format

2004-04-28 Thread Kevin Hoyt
Hope this helps, Kevin > -Original Message- > From: Paul Beardsell [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 28, 2004 6:46 AM > To: Flex > Subject: [flexcoders] Date Format > > Hi Guys, > > Any ideas how to format a date in Flex? > > currentl