New to KendoReact? Learn about KendoReact Free.
Custom Properties
To better identify with which element the user interacts, the PanelBar allows you to set any type of properties to the PanelBarItem.
Getting Started
You can set the custom property by passing the property to the PanelBarItem
.
jsx
class App extends React.Component {
render() {
return (
<PanelBar>
<PanelBarItem customProp="firstItemCustomProp" />
<PanelBarItem customProp="secondItemCustomProp" />
</PanelBar>
)
}
}
Accessing Properties
You can access the property from the target of the onSelect
PanelBar event.
Change Theme
Theme
Loading ...