Components.AccordionItem Class
A collapsible/expandable item within an accordion
See Components.Accordion for examples.
Item Index
Methods
Properties
Methods
_willDestroyElement
private
Unregister form the parent component
_willRender
private
Register ourself as a child at the parent component
We use the
willRender
event here to also support the fastboot environment, where there is no didInsertElement
Properties
_didInsert boolean
private
flag to check if component has already been rendered, for the
_willRender
event handler
_parent unknown
private
stores the parent in didInsertElement hook as a work-a-round for
https://github.com/emberjs/ember.js/issues/12080
accordion unknown
privateReference to the parent Components.Accordion
class.
classTypePrefix String
protectedDefault: 'panel'
title string
publicThe title of the accordion item, displayed as a .panel-title element
type String
public
Property for type styling
For the available types see the [Bootstrap docs](http://getbootstrap.com/css/#buttons-options) (use without "btn-" prefix)
Default: 'default'
value unknown
publicThe value of the accordion item, which is used as the value of the selected
property of the parent Components.Accordion component