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"
                                } 
                              ]
}

Tags

Properties can be configured with special tags that may be interpreted by the deployment environment.

Servoy defines a property called 'accessible' to configure boolean properties that will always supressed when a component is marked as inaccessible.

Code Block
languagejs
titleTags example
"model": {
   "enabled" : { "type": "protected", "blockingOn": false, "default": true,
                 "tags": { "accessible":"accessible" }
   }
} 

Security

Components can be protected using two special security types: visible and protected.

...