Usage
Signature:
interface DrawerLayoutElement
Typescript Import Format
//To typecheck the element APIs, import as below.
import {DrawerLayoutElement} from "ojs/ojdrawerlayout";
//For the transpiled javascript to load the element's module, import as below
import "ojs/ojdrawerlayout";
For additional information visit:
Note: Application logic should not interact with the component's properties or invoke its methods until the BusyContext indicates that the component is ready for interaction.
Slots
JET components that allow child content support slots. Please see the slots section of the JET component overview doc for more information on allowed slot content and slot types.
-
Default
-
Specifies the default slot.
-
end
-
Container for End drawer content.
-
start
-
Container for Start drawer content.
Attributes
-
end-display :(reflow|overlay|auto)
-
Specifies the display mode of the End drawer.
- Default Value:
'auto'
Names
Item Name Property endDisplayProperty change event endDisplayChangedProperty change listener attribute (must be of type function, see Events and Listeners for additional information.) on-end-display-changed -
end-opened :boolean
-
Specifies the 'endOpened' state of the End drawer.
- Default Value:
false
- Supports writeback:
true
Names
Item Name Property endOpenedProperty change event endOpenedChangedProperty change listener attribute (must be of type function, see Events and Listeners for additional information.) on-end-opened-changed -
start-display :(reflow|overlay|auto)
-
Specifies the display mode of the Start drawer.
- Default Value:
'auto'
Names
Item Name Property startDisplayProperty change event startDisplayChangedProperty change listener attribute (must be of type function, see Events and Listeners for additional information.) on-start-display-changed -
start-opened :boolean
-
Specifies the 'opened' state of the Start drawer.
- Default Value:
false
- Supports writeback:
true
Names
Item Name Property startOpenedProperty change event startOpenedChangedProperty change listener attribute (must be of type function, see Events and Listeners for additional information.) on-start-opened-changed
Methods
-
getProperty(property) : {any}
-
Retrieves a value for a property or a single subproperty for complex properties.
Parameters:
Name Type Description propertystring The property name to get. Supports dot notation for subproperty access. Returns:
- Type
- any
-
setProperties(properties) : {void}
-
Performs a batch set of properties.
Parameters:
Name Type Description propertiesObject An object containing the property and value pairs to set. Returns:
- Type
- void
-
setProperty(property, value) : {void}
-
Sets a property or a single subproperty for complex properties and notifies the component of the change, triggering a [property]Changed event.
Parameters:
Name Type Description propertystring The property name to set. Supports dot notation for subproperty access. valueany The new value to set the property to. Returns:
- Type
- void