body
Overview
<body/>Basic Example
<var name="input_field" type="text" />
<dialog id="dialog-input" title="Input Dialog" subtext="Please enter text">
<body>
<text-input label="Username" placeholder="Please enter your username"
bind="input_field" required="true" />
</body>
<button-group>
<button label="Should validate" on-press="$:onUsernameSubmit()" validate="true" />
</button-group>
</dialog>function onUsernameSubmit() {
// logic here on a valid username
}Standard Attributes
Advanced Attributes
align
alignLast updated