/
Toggle Button
Toggle Button
Description
A toggle key is a key that is used to turn a function on or off, or to switch between two functions.
System Dependencies
Installation
The package can be installed via npm:
npm install empower-inputs --save
Standard Toggle
Configuration
import { InputSelectionHandler} from 'empower-inputs';
let [formElement, setFormElement] = useState({
sampleToggleButton: {
id: 'sampleToggleButton',
type: 'toggle-button',
placeholder: 'Please select option',
value: '',
disabled: false,
required: true,
options: [
{
label: "Approve",
value: "APPROVED",
},
{
label: "Reject",
value: "REJECTED",
}
]
}
});
..............
return (
<>
<h4>TOGGLE BUTTON</h4>
<InputSelectionHandler
config={formElement.sampleToggleButton}
customClass="toggle-button-custom-class"
onChanged={(e) => inputChangedHandler(e, 'sampleToggleButton')}
/>
</>
)
Properties
Parent Parameter | Sub Parameter | Data Type | Constraint |
---|---|---|---|
config |
| JSON Object | Required |
| id | String | Required |
| type | String | Required |
| label | String | Optional |
| value | Array Object | Required |
| placeholder | String | Optional |
| readOnly | Boolean | Optional |
| required | Boolean | Boolean |
| disabled | Boolean | Boolean |
customClass |
| String | Optional |
onChanged |
| Event Method | Required |
References
Repository Link: https://gitlab.com/empowerteams/empower-inputs.git
NPM Package: npm: empower-inputs
Demo Repo: git@bitbucket.org:empowerteams/mfe-sub-application-template.git
, multiple selections available,