Child pages
  • Specification (.spec file)

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleclient javascript
  // assign to the scope the svy-servoyapi
  scope: {
    	  model: '=svyModel',
		  servoyApi: '=svyServoyapi'
      },
 
// in the controller or link functions you can use that then
 $scope.servoyApi.callServerSideApi("mycallback",["stringtest",1]).then(function(retValue) {
   console.log(retValue);    
 });

...

Code Block
languagejs
titleclientside service script
$services.callServerSideApi("myservicename","mycallback",["stringtest",1]).then(function(retValue) {
   console.log(retValue);    
 });

...