Child pages
  • Specification (.spec file)

Versions Compared

Key

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

...

Code Block
"functionName": {
        "returns":  "string",
        "parameters": [
            { "name": "start", "type": "int" },
            { "name": "end", "type": "int" } 
        ],
		"private":true // since Servoy 8.3, optional, default is false
}

the private configuration makes the handler only accessible through Server Side Scripting. But not by the client/browser itself.

 

The signature description json for functions in the api section describes the arguments, type of call and return type:

...