Last active
May 23, 2018 07:00
-
-
Save benouat/865d3f57e2fc04f70c0d5a4813b824f0 to your computer and use it in GitHub Desktop.
Focused Button with Enter & Space
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Focused Button with Enter & Space", | |
| "description": "", | |
| "data": {} | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {macro main()} | |
| {@aria:TextField { | |
| block: true | |
| }/} | |
| <hr/> | |
| {@aria:Button { | |
| id: "first", | |
| label: "First", | |
| width: 100, | |
| onclick: { | |
| fn: "onUpdateButtonClick", | |
| scope: this | |
| } | |
| }/} | |
| {@aria:Button { | |
| id: "second", | |
| label: "Second", | |
| width: 100, | |
| onclick: { | |
| fn: "onUpdateButtonClick", | |
| scope: this | |
| } | |
| }/} | |
| {/macro} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ({ | |
| $classpath:'InstantTemplateScript', | |
| $prototype : { | |
| onUpdateButtonClick: function() { | |
| alert("Button clicked!"); | |
| } | |
| } | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {macro main()} | |
| {/macro} |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Created by Instant Aria Templates, viewable on http://instant.ariatemplates.com/benouat/865d3f57e2fc04f70c0d5a4813b824f0