getService

returns a specified service of Pivot

object getService(string service);
servicestringthe service name
objectthe object with the service methods

Example

const local = $$("pivot").getService("local");

Details

Services are major blocks of inner logic of the widget. Their methods can be called directly as well as customized.

Pivot has access to the "Local Data" service that works with the client data.

Back to top