Child pages
  • Intro to Servoy Concepts

Versions Compared

Key

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

...

A function in Servoy is the same as a method. It is a JavaScript function and is seen as the first line in a method call as in the sample below.

Code Block
 function onActionAdd(event) {
   //code here
}

All of the methods written in Servoy will begin with the word function in the actual .js page they are written in.

...

Foundsets can be created, accessed, altered, controlled, and applied through scripting.

Relation

A relation is a Servoy object used to define the key relationship between two database tables. A standard relationship is defined by the primary key of one table being linked to a foreign key of another. Some features of a relation include:

...