Servoy Tutorial Photo Credit: />Ben Heine via CompfightThis is an object-oriented Servoy tutorial on how to use an object to control groups of elements that are on a form. Suppose for example, that you had various labels and buttons that need to be shown depending on the type of record you are on. You could…
Servoy Tutorial Photo Credit: Thomas Hawk via CompfightThis is an object-oriented Servoy tutorial on how to use multiple inheritance with Servoy. If you read the article on "Prototypal Inheritance", then you learned all about cloning objects using a standard function called objectPlus. This function cloned an object with all its properties and functions, and returned a…
Servoy Tutorial Photo Credit: rob smith photography via CompfightThis is an object-oriented Servoy tutorial on how to use prototypal inheritance in Servoy. When you create a new object using a constructor function, the new object inherits the properties and functions from the constructor and the prototype. However, the real power in object-oriented programming comes from…
Servoy Tutorial Photo Credit: dmjames58 via CompfightThis is an object-oriented Servoy tutorial on how to use inheritance patterns in Servoy. I use objects a lot, so I thought it would be a good idea to introduce you to a few basic inheritance patterns and how to use them with Servoy. If you have not yet read…
Servoy Tutorial Photo Credit: ΞSSΞ®®Ξ via CompfightThis is an object-oriented Servoy tutorial on how to use object-oriented programming in Servoy. Javascript’s core data type is the object, along with five simple data types: Number, String, Boolean, Undefined and Null. Objects are mutable and can be changed, while the primitive types are immutable. An object can be…