Button Element Element
Getting Started | API | Elements | Actions | Validators | Handlers | Configuration Options | About
Table of Contents
1 Button Element - #button {}
The button element produces an HTML button. When clicked, the button will cause a Nitrogen postback.
Usage
#button { text="Go!", postback={click, goButton} }
Attributes
- text - (string)
- The button's title.
- html_encode - (boolean)
- Set to true to safely html-encode the text.
- postback - (Erlang term)
- Clicking on the button will initiate a Nitrogen postback with the supplied term.
- click - (Action or List of Actions)
- Wires the selected actons to the \"click\" events. Due to the commonality of binding actions to the click event, this is merely a shortcut for
#button { text="Do Something", actions=[
#event{type=click,actions=ListOfActions}
]}