« Back to Product

Documentation

SelectFile

Require: IP-Symcon >= 4.2

Creates a selection dialog with the caption caption.
If created in the "elements" area, the property name is set to the value of the selected file when accepted. This means that the content of the selected file is saved as a Base64 encoded string.

Example

Parameters

Parameter Description
caption Visible caption
download (optional) (default: "") If this parameter is not an empty string and the output of the onChange script is a Data-URL, the output is downloaded as a text file with the name of the download parameter. (since IP-Symcon 7.0)
enabled (optional) (default: true) If true, the file selection can be used, otherwise it is displayed as deactivated (since IP-Symcon 5.2)
extensions (optional) Allowed file extensions. Separated by a comma and introduced with a period Example: .jpg,.gif,.txt
link (optional) (default: false) If this parameter is true, the output of the onChange script is opened as a link. If it is false, the output is displayed as a dialog in the configuration form. (since IP-Symcon 6.0)
name (optional) Name of the file selection/the string property to be set
onChange (optional) (default: "") Script which is executed when the value of the file selection is changed. If the script consists of several lines, the individual lines can also be defined as an array (arrays are supported since version 6.0). It has the same properties as onClick of the Button (since IP-Symcon 5.2)
type SelectFile
value (optional) (default: 0) The value of the file selection - If there is an associated property, this parameter is overwritten by the property in the elements area (since IP-Symcon 5.2)
visible (optional) (default: true) If true, the file selection is visible, otherwise it is invisible (since IP-Symcon 5.2)
width (optional) (default 300px) Fixed width of the file selection in pixels or % as a string, e.g. "40%" or "250px" (since IP-Symcon 5.3)

Example

{ "type": "SelectFile", "name": "PropertyStringFile", "caption": "Target", "extensions": ".jpg,.gif,.txt" }
Any questions?