Content Template
Some Silk Tags use their HTML content to define temples to show the data combined with HTML. The tags are:
silk:Column's content
silk:Tile's content
silk:Input using the template property
This method allows for the creation of elaborated HTML structures.
Data Binding
Data binding is the process that establishes a connection between the app UI and the data it displays. SilkBuilder provides data values to the components by data-biding to the DataProvider object.
The data-biding with the HTML content is done in the template using curly brackets "{ }" or double curly brackets "{{ }}," containing the name of the property to be displayed.
A simple data binding sample could be by using silk:Column to display a cell containing the firstName property of the selected record in the DataProvider.
A slightly more elaborate sample could include more data in the cell.
In this case, the table cell will show the firstName and lastName inside a div tag and the birthday in a second div tag, simulating internal rows.
A more complex sample could be the inclusion of the Card Bootstrap component in a silk:Tile. This sample will use double curly brackets.
This template will use the properties: imageURL, eventName, description, eventID.
Data Formating
The data extracted from the DataProvider during the data binding process can receive a formatting pattern added to the data binding template after a pipe symbol separating the property name "|."
Silk Builder provides common patterns to help data formatting during development:
{column|date} - Renders the date as MM/dd/yyy
{column|numeric} - Renders number as ##'###,###
{column|number} - Renders number as ##'###,###
{column|integer} - Renders number as ##'###,###
{column|decimal} - Renders decimal number as ##'###,###.00
{column|byte} - Renders as ###KB or ###MB
Patterns can also created manually using this guide. An example found below.
Data Renderer
If formatting patterns fall short of expectations, a function can be used to create the desired effect. This pattern is used in the following way:
This example sends the firstName's value to the function formatName.
The function should receive the property value and return a text value.
DataProvider Query
If the column's value is the primary key of a DataProvider, this can be used to query the DataProvider and extract a desired column's value using this pattern.
This example will query the DataProvider countryDP using the countryID column and will render the found country's name.
Logical Data Rendering
HTML tags used in the template can be filtered using JavaScript logical statements. For this, adding the property "renderIf" to the HTML tag and setting the rational criteria is necessary.
In the example below, the DIV containing the firstName column will render if the property age exceeds 10.
It is essential to understand that this is only a visualization restriction, not a data access restriction. The firstName column exists in the DataProvider and can be accessed using JavaScript. If it is crucial to refrain from downloading the information to the client, then it is essential to configure the data restriction settings in the SQL query.
Last updated