SpeedDialItemDirective

12 Sep 20251 minute to read

‘e-speeddialitem’ directive represent a item of the Angular SpeedDial.
It must be contained in a SpeedDial component(ejs-speeddial).

<ejs-speeddial>
  <e-speeddialitems>
   <e-speeddialitem text='Cut'></e-speeddialitem>
   <e-speeddialitem text='Copy'></e-speeddialitem>
  </e-speeddialitems>
</ejs-speeddial>

Properties

disabled any

Defines whether to enable or disable the SpeedDialItem.

Defaults to false

iconCss any

Defines one or more CSS classes to include an icon or image in speed dial item.

Defaults to ’’

id any

Defines a unique value for the SpeedDialItem which can be used to identify the item in event args.

Defaults to ’’

text any

Defines the text content of SpeedDialItem.
Text won’t be visible when mode is Radial.
Also, in Linear mode, text won’t be displayed when direction is Left or Right.

Defaults to ’’

title any

Defines the title of SpeedDialItem to display tooltip.

Defaults to ’’