FabComponent
9 Jul 20265 minutes to read
Represents the Essential JS 2 VueJS Fab Component
<ejs-fab></ejs-fab>Properties
content string
Defines the text content of the Button element.
<template>
<ejs-button :isPrimary="true" :content="content"></ejs-button>
<template>
<style>
</style>
<script>
import Vue from "vue";
import { ButtonPlugin } from "@syncfusion/ej2-vue-buttons";
Vue.use(ButtonPlugin);
export default Vue.extend({
data: function(){
return{
content: 'Primary'
}
}
methods: { }
}});
</script>Defaults to ””
cssClass string
Defines class/multiple classes separated by a space in the Button element. The Button types, styles, and
size can be defined by using
this.
<template>
<ejs-button :cssClass="cssClass_flat" :content="content">Primary</ejs-button>
<template>
<style>
</style>
<script>
import Vue from "vue";
import { ButtonPlugin } from "@syncfusion/ej2-vue-buttons";
Vue.use(ButtonPlugin);
export default Vue.extend({
data: function(){
return{
cssClass_flat: 'e-flat'
}
}
methods: { }
}});
</script>Defaults to ””
disabled boolean
Specifies a value that indicates whether the Button is disabled or not.
Defaults to false.
enableHtmlSanitizer boolean
Specifies whether to enable the rendering of untrusted HTML values in the Button component.
If ‘enableHtmlSanitizer’ set to true, the component will sanitize any suspected untrusted strings and scripts before rendering them.
Defaults to true
enablePersistence boolean
Enable or disable persisting component’s state between page reloads.
Defaults to false
enableRepeat boolean
Enables hold-to-repeat behavior on the Button when set to true.
While the button is held down (pointer or keyboard), repeated clicked events are fired
at the rate controlled by repeatDelay and repeatInterval.
Defaults to false
enableRtl boolean
Enable or disable rendering component in right to left direction.
Defaults to false
iconCss string
Defines class/multiple classes separated by a space for the Button that is used to include an icon.
Buttons can also include font icon and sprite image.
Defaults to ””
iconPosition string|IconPosition
Positions the icon before/after the text content in the Button.
The possible values are:
- Left: The icon will be positioned to the left of the text content.
- Right: The icon will be positioned to the right of the text content.
Defaults to IconPosition.Left
isPrimary boolean
Defines whether to apply primary style for FAB.
Defaults to true
isToggle boolean
Makes the Button toggle, when set to true. When you click it, the state changes from normal to active.
Defaults to false
position string|FabPosition
Defines the position of the FAB relative to target.
The possible values are:
- TopLeft: Positions the FAB at the target’s top left corner.
- TopCenter: Positions the FAB at the target’s top left corner.
- TopRight: Positions the FAB at the target’s top left corner.
- MiddleLeft: Positions the FAB at the target’s top left corner.
- MiddleCenter: Positions the FAB at the target’s top left corner.
- MiddleRight: Positions the FAB at the target’s top left corner.
- BottomLeft: Positions the FAB at the target’s top left corner.
- BottomCenter: Places the FAB on the bottom-center position of the target.
- BottomRight: Positions the FAB at the target’s bottom right corner.
<template>
<ejs-fab id='fab' content='fab' position='BottomLeft'></ejs-fab>
</template>
<script>
import Vue from 'vue';
import { FabPlugin } from '@syncfusion/ej2-vue-buttons';
Vue.use(FabPlugin);
export default {}
</script>Defaults to FabPosition.BottomRight
repeatDelay number
Specifies the delay in milliseconds before repeat firing begins after the initial press.
Only applicable when enableRepeat is true.
Changes to this property take effect on the next hold cycle.
Defaults to 400
repeatInterval number
Specifies the interval in milliseconds between repeated clicked fires during a hold.
When set to 0 (default), pointer repeat uses 100ms; keyboard repeat defers to the native OS rate.
Changes to this property take effect on the next hold cycle.
Defaults to 0
target string|HTMLElement
Defines the selector that points to an element in which the FAB will be positioned.
By default, FAB is positioned based on viewport of browser.
The target element must have relative position, else FAB will get positioned based on the closest element which has relative position.
Defaults to ’’
visible boolean
Defines whether the fab is visible or hidden.
Defaults to true.
Methods
click
Click the button element
its native method
Returns void
destroy
Destroys the FAB instance.
Returns void
focusIn
Sets the focus to Button
its native method
Returns void
getPersistData
Get the properties to be maintained in the persisted state.
Returns string
refreshPosition
Refreshes the FAB position. You can call this method to re-position FAB when target is resized.
Returns void
Events
clicked EmitType<ClickedEventArgs>
Triggers on every click fire — both the initial press and each repeat while the button is held.
The event argument carries originalEvent (the originating DOM event) and isRepeat
(false for the first press, true for subsequent repeat fires).
Only emitted when enableRepeat is true.
created EmitType<Event>
Triggers once the component rendering is completed.