React Expansion Panel Overview
The Ignite UI for React Expansion Panel is a lightweight accordion component which can be rendered in two states - collapsed or expanded. The expansion panel can be toggled using mouse click, or keyboard interactions.
React Expansion Panel Example
Usage
First, you need to the install the corresponding Ignite UI for React npm package by running the following command:
npm install igniteui-react
You will then need to import the IgrExpansionPanel
, its necessary CSS, and register its module, like so:
import { IgrExpansionPanel, IgrExpansionPanelModule } from 'igniteui-react';
import 'igniteui-webcomponents/themes/light/bootstrap.css';
IgrExpansionPanelModule.register();
The simplest way to start using the IgrExpansionPanel
is as follows:
<IgrExpansionPanel>
<h1 slot="title">Golden Retriever</h1>
<h3 slot="subtitle">Medium-large gun dog</h3>
<span>The Golden Retriever is a medium-large gun dog that retrieves shot waterfowl, such as ducks
and upland game birds, during hunting and shooting parties.[3] The name retriever refers to the breeds ability
to retrieve shot game undamaged due to their soft mouth. Golden retrievers have an instinctive love of water, and
are easy to train to basic or advanced obedience standards.</span>
</IgrExpansionPanel>
Binding to events
The Expansion Panel component raises the following events:
- Closed - Raised when the expansion panel is collapsed
- Opened - Raised when the expansion panel is expanded
- Closing - Raised when the expansion panel starts collapsing
- Opening - Raised when the expansion panel starts expanding
The following sample demonstrates how we can add some logic to our component to make it show/hide the subtitle
depending on the current state of the panel.
We can do this by binding to the Opened
and Closed
events:
Component Customization
The IgrExpansionPanel
control allows all sorts of content to be added inside of its body. It can render input, charts and even other expansion panels!
The IgrExpansionPanel
allows for easy customization of the header through the exposed title, subTitle and indicator slots.
Configuring the position of the expansion indicator can be done through the indicatorPosition
property of the Expansion Panel. The possible options are start, end or none.
The next code sample demonstrates how to configure the component's button to go on the right side.
Keyboard Navigation
The Ignite UI for React Expansion Panel keyboard navigation is compliant with W3C accessibility standards and convenient to use.
Key Combinations
- Alt + ↓ - expands the focused panel
- Alt + ↑ - collapses the focused panel
- Space/Enter - toggle the expansion state of the focused panel
Styling
The Ignite UI for React Expansion Panel component exposes several CSS parts (header
, indicator
, title
, subtitle
and content
) to give you full control over its styling.