Components
The appmixer.ui.Components is a UI widget that displays all available applications and components.
Method | Description |
appmixer.ui.Components(config) | Constructor function that accepts config object. The config object must contain at least the el property that points to a container DOM element where the widget will be rendered. |
open() | Render the widget inside its container. |
close() | Terminate widget and empty the container. |
reload() | Reload the widget data. |
var components = appmixer.ui.Components({
el: '#your-accounts-div'
});
components.open();

Last modified 3yr ago