You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Kinjal (JIRA)" <ji...@apache.org> on 2016/02/23 09:22:18 UTC

[jira] [Created] (FLEX-35041) Date property not working in FlexJS

Kinjal created FLEX-35041:
-----------------------------

             Summary: Date property not working in FlexJS
                 Key: FLEX-35041
                 URL: https://issues.apache.org/jira/browse/FLEX-35041
             Project: Apache Flex
          Issue Type: Bug
            Reporter: Kinjal
             Fix For: Apache FlexJS 0.5.0


Below code throw error in conversion from MXML to JS.This code works fine in swf.

var newDate:Date = new Date(Number(_xmlString.substr(0, 4)), Number(_xmlString.substr(4, 2)), Number(_xmlString.substr(6, 2)));
var split:Array = _xmlString.split(" ");
if (split.length > 1)
{ newDate.date = Number(split[1].substr(0, 2)); newDate.minutes = Number(split[1].substr(2, 2)); newDate.seconds = Number(split[1].substr(4, 2)); }

And the error i am getting is

Access of possibly undefined property date.
newDate.date = Number(split[1].substr(0, 2));
               ^

Access of possibly undefined property minutes.
newDate.minutes = Number(split[1].substr(2, 2));
                ^

Access of possibly undefined property seconds.
newDate.seconds = Number(split[1].substr(4, 2));
                ^





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)