Abcs Application API.
It serves basic API support modules which enables functionality around i.e. entities, UI, operations etc.
- Version:
- 15.4.5
- Source:
Methods
(static) Entities() → {module:api/js/Entities}
stable API
Gets the Entities API support module.
- Version:
- 15.4.5
- Source:
Returns:
Examples
var entitiesAPI = Abcs.Entities();
var entities = Abcs.Entities().getAll();
(static) Operations() → {module:api/js/Operations}
stable API
Gets the Operation API support module.
- Version:
- 15.4.5
- Source:
Returns:
Example
var operationAPI = Abcs.Operations();
(static) Pages() → {module:api/js/Pages}
stable API
Gets the Pages API support module.
- Version:
- 15.4.5
- Source:
Returns:
- Type
- module:api/js/Pages
Examples
var pagesAPI = Abcs.Pages();
Abcs.Pages().navigateToPage('home');
(static) System() → {module:api/js/System}
stable API
Gets the System API support module.
- Version:
- 15.4.5
- Source:
Returns:
- Type
- module:api/js/System
Examples
var systemAPI = Abcs.System();
var userEntity = Abcs.System().getLoggedInUser();
(static) UI() → {module:api/js/UI}
stable API
Gets the UI API support module.
- Version:
- 15.4.5
- Source:
Returns:
- Type
- module:api/js/UI
Examples
var uiAPI = Abcs.UI();
Abcs.UI().showNotification(Abcs.UI().Notification.create({
message: 'I'm informing you ...'
});