English English Spanish EspañolKorea한국어
Straker»Company»Blog»2008» Date Formatting in Flex Datagrid

Date Formatting in Flex Datagrid

I just ran into a Flex date gotcha when using Mysql with ZoomFlex. The details are explained on a Ray Camden blog post

To apply the fix to a ZoomFlex site simply change the listing.mxml formatDate function to the one below:

 

      public function formatDate(item:Object, dgColumn:Object):String {
                
            
                    var s: String = item[dgColumn.dataField];
                    var _newdate = new Date(s);
                

                return dfconv.format(_newdate);

            }

 


Comments

There are no comments for this page as yet.

Add a comment