Child pages
  • Server Side Scripting

Versions Compared

Key

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

...

Code Block
languagejs
titleLogging in component/service server side scripting file
console.log(message);
console.warn(message);
console.error(message);

Servoy API

Starting with Servoy 8.3.1 inside the server side scripting file of a component/service you can call specific api using object "servoyApi". Currently, there is only one api supported: hideForm(formName). This api  is used to mark a form as not visible anymore immediately because cannot wait for client to mark it as hidden(for example in removeTab of a tabpanel). 

Code Block
languagejs
titleLogging in component/service server side scripting file
servoyApi.hideForm('myform')