Advanced Custom Fields


Construction warning.png Please note that this page is currently under construction. There is more information to come.

Contents

Overview

In this article, you will learn about three useful custom field types. These types of fields are widely used within SmartSimple and provide for versatile processing options.

  • Calculated Fields – Execute an expression to calculate a value and store the result in the field.
  • Web Page View Field – Creates a document based on values stored in the underlying entity or entities.
  • Upload - Multiple Files Storage – Stores a document either created through the Web Page View field or uploaded.

Calculated Fields

You can use arithmetic, string, comparison operators and functions within the calculated custom field.

  • References to other fields are always enclosed in square brackets: [variable1]. For example: [Salary].
  • The calculations are performed when you click the Save button and save the page.

Calculation Order on Page

  • Calculated field formulas are executed in the same order that the calculated fields are displayed on the page – left to right and top to bottom.
  • You must not place fields that perform summary calculations based on other calculated fields ABOVE the subordinate calculations.
  • If the fields are ordered in this manner, saving the page will not update the summary calculation, as summary formula will be executed BEFORE the subordinate calculations are performed.

Arithmetic Operators

All values are treated as strings. For arithmetic operations, the PARSEINT and PARSEFLOAT functions are used to convert the string value to a numeric value.

For example:

  • PARSEINT([Salary]) + PARSEINT([Bonus]) + PARSEINT([Car Allowance]) - Add Salary to Bonus to Car Allowance and return an integer result.
  • PARSEFLOAT([Salary]) / 26 – Divides the Salary by 26 to show a bi-weekly amount.

See Also

Web Page View Field

The Web Page View field provides the ability to display a fully formatted document or web page. In constructing this type of field, HTML is used in conjunction with variables.

The HTML Template is used to store the body of the document and will be a mix of HTML code, static text and references to fields associated with the underlying entity.

Basic HTML Tags Required

The following basic HTML tags should be added to the Web Page View.

Advc.png

Below is a sample HTML Template:
Advc1.png
The Variables are shown in bold.
Note the use of the “me” variable to reference the current user’s details.

Suppressing Missing Fields

A special tag is used to suppress any fields that are missing from the underlying entity - Advc2.png. Placing this tag in front of any field that may not be present will suppress the display of the variable name.

For example, if we add this tag before the @salutation@ field and Save:
Advc3.png
The @salutation@ field is suppressed.

Document Options

You control which options are available to the user of each Web Page View field. Each of the selected options will add a button to the top of the Web Page View field.

  • Show Menu – check box that defines if a menu should be shown in the document window.

General Options

  • Allow Printing – enables the user to print the resultant document.
  • Allow Editing – enables the user to edit the document with the HTML Editor
  • Allow New Window – displays the document in a new window so the browser’s print function can be used.
  • Is XML – indicates that the document is prepared as an XML output.

PDF Options

  • Enable Password Protection – enables the user to password protect the document (generally used when the document is going to be emailed).
  • Send as Email – enables the user to send the PDF as an attachment to an email message.
  • Save to Multiple File Field – enables the user to save the document as a PDF into any multiple file type fields in the related entity.
  • Save to Local Disk – enables the user to save a local copy of the PDF document.

HTML Options

  • Send as Email – enables the user to send the document as the body of an email message.
  • Save to Multiple File Field – enables the user to save the document as an HTML document into any multiple file type fields in the related entity.
  • Save to Local Disk – enables the user to save a local copy of the HTML document.

Using the Multiple Files Storage Field

The final custom field type will be the Multiple Files Storage Field. This field stores multiple files into a single field and is used to store:

  • Uploaded documents.
  • Documents that are created using the Web Page View type field using the Store to Server option.

Multiple Files Storage Field Options

The following options are available for this field type:

  • Keep Version – provides for version control over documents added. When a second document with the same name is added, the name will be appended with V_# (where # is the version number starting at 1).
  • Disable Delete – suppress the user’s ability to delete any files stored in the field. The Allow Delete Multiple Files Fields Manager Permission is required by the user to bypass this restriction.
  • Sort Order – files stored in the field can be ordered by File Name, File Size or Update Date (descending).
  • File Index – enables file indexing and full text searching on the embedded documents.

See Also