You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2017/10/26 08:35:32 UTC

[GitHub] justinmclean opened a new pull request #53: Have date chooser dispatch month change events

justinmclean opened a new pull request #53: Have date chooser dispatch month change events
URL: https://github.com/apache/royale-asjs/pull/53
 
 
   Example code:
   <?xml version="1.0" encoding="utf-8"?>
   <js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:js="library://ns.apache.org/royale/basic">
   
       <fx:Script><![CDATA[
           public function monthChange():void {
               trace("month changed");
           }
           ]]></fx:Script>
   
       <js:beads>
           <js:ApplicationDataBinding />
       </js:beads>
   
       <js:valuesImpl>
           <js:SimpleCSSValuesImpl/>
       </js:valuesImpl>
   
       <js:initialView>
           <js:View>
               <js:Group id="content" height="200" width="250">
                   <js:beads>
                       <js:VerticalLayout />
                   </js:beads>
                   <js:DateChooser id="dc1" height="200" monthChanged="monthChange()" />
               </js:Group>
           </js:View>
       </js:initialView>
   
   </js:Application>
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services