Creates a button for use with {{Calculator}} widgets. Requires the calculator gadget to be enabled.
Upon clicking a button, the button evaluates its formula
parameter and inserts the results into the field identified by the for
parameter.
For example:
{{calculator button|contents=Add 1|for=x|formula=x+1|type=plain}}. X = {{calculator|type=plain|id=x|default=0}}
Creates
0
. X =There are many different types of buttons you can make. For codex style buttons, see [1] for best practice on how to use them. Note, the value default refers to the codex "default" styles, it is not the default option. The style of plain buttons may vary between different skins and operating systems.
type | normal | primary | quiet | disabled |
plain (non-codex) | ||||
default | ||||
progressive | ||||
destructive |
There is also support for size parameter that takes "medium" or "large". Medium is recommended unless the button is only a small icon. There is an alt parameter to provide alt text for screen readers. However you should only use it if the text contents of the button don't explain its purpose. Most of the time it is better to just make the button contents descriptive.
Create a button element that can affect a widget from Template:Calculator
Parameter | Description | Type | Status | |
---|---|---|---|---|
class | class | Extra CSS classes to add to the button. If you want this styled like a button even when the gadget is disabled add "cdx-button cdx-button--fake-button cdx-button--fake-button--enabled" | String | optional |
type | type | Style of button. Default is "plain". The value of "default" means a codex default button, which is not the default of this template
| String | suggested |
weight | weight | Weight of button (Ignored for plain buttons)
| String | optional |
size | size | Size of button. medium is default
| String | optional |
id | id | id of button element | String | optional |
title | title | Tooltip for button | String | optional |
style | style | Extra CSS for button | String | optional |
alt | alt | Alt text of button for screen readers. Only use if the text content of the button would not be clear to a screen reader | String | optional |
disabled | disabled | Mark button as disabled. | Boolean | optional |
for | for | id of Calculator field that is the target of this button | String | required |
formula | formula | Formula to set the field from the for parameter to
| String | required |
contents | contents 1 | Contents of the button
| Content | required |
class-live | class-live | Extra CSS classes that are only added if the calculator gadget is enabled | String | optional |