Design - Advanced
Samples
1. Loops in loops. <div class="card"> [foreach (location in MatchedLocations)] <div class="card-header">Location: [SafeXml(location.Name)]</div> <div class="card-body"> <div class="card"> [foreach (resource in GetResources(location))] <div ...
Generic properties
The generic properties are Created: (DateTime) Is the date and time at which the object was created. (for example, this booking was created on [FormatDate(”D”, CurrentBooking.Created)]) LastUpdate: (DateTime) Is the date and time at which the object ...
Objects and datatypes
Simple datatypes The simple data types are the ones that the system typically uses in comparisons Bool: Is a so called boolean type typically used in true/false conditional statements. (ie. [If (CurrentBooking!null)]The meeting room is busy[If ...
Design Structure
In templates and selected design elements we use a template programming language called D-Sharp. D-Sharp is a simple and fast script language invented to be used in templates. The language is used to define the exact content to be presented and how ...