Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
webbind:parameters [2025/04/04 07:59] optrix created |
webbind:parameters [2025/04/05 03:33] (current) optrix |
||
---|---|---|---|
Line 1: | Line 1: | ||
====Web Data Binding Parameters==== | ====Web Data Binding Parameters==== | ||
+ | |||
+ | [[webbind: | ||
The parameters are given in the same format as CSS styles. Parameter names, a colon character (:) and the property value. | The parameters are given in the same format as CSS styles. Parameter names, a colon character (:) and the property value. | ||
Line 13: | Line 15: | ||
The name of the ARDI point, in the format //asset name// . //property name//. For instance, the 'Speed - Actual' | The name of the ARDI point, in the format //asset name// . //property name//. For instance, the 'Speed - Actual' | ||
- | ===Type=== | + | ===Target=== |
- | Chooses a JQuery function to use when setting | + | Sets the target attribute/css value to set. This is useful when there' |
- | Note that if you don't specify a type and you also don't specify the name of the CSS attribute you want to set, the system asssumes you want to set the **text** on the element. | + | <code html> |
+ | <div ardibind=" | ||
+ | </ | ||
+ | |||
+ | // | ||
===Prefix=== | ===Prefix=== | ||
Line 34: | Line 40: | ||
Using // | Using // | ||
+ | |||
+ | ===Convert=== | ||
+ | |||
+ | The **convert** parameter converts numeric values to either **colours** or **text**. This is particularly useful for data points that represent discrete values and enumerations, | ||
+ | |||
+ | The following are valid values for ' | ||
+ | |||
+ | ^Value^Meaning^ | ||
+ | |**text**|Numeric values are converted to text (ie. ' | ||
+ | |**colour** or **color**|Numeric values are converted to RGB/HTML colours| | ||
===Map=== | ===Map=== | ||
Line 54: | Line 70: | ||
red, | red, | ||
</ | </ | ||
+ | |||
+ | ===Type=== | ||
+ | |||
+ | Chooses a JQuery function to use when setting the property. By default this is //css// if you've given any attribute name. You can also use **attr** to set non-CSS attributes, or **text** or **html** to set the content of the XML node. | ||
+ | |||
+ | Note that if you don't specify a type and you also don't specify the name of the CSS attribute you want to set, the system asssumes you want to set the **text** on the element. | ||
+ | |||
+ | For example... | ||
+ | |||
+ | <code html> | ||
+ | <div ardibindborder=" | ||
+ | </ | ||
+ | |||
+ | //Sets the border of the object to yellow when the burner is active, or black when it is not.// | ||
+ | |||
+ | <code html> | ||
+ | <div ardibind=" | ||
+ | </ | ||
+ | |||
+ | //Sets the background colour of the object to green when the burner is active, or red when it is not.// | ||
+ | |||
+ | <code html> | ||
+ | <div ardibind=" | ||
+ | </ | ||
+ | |||
+ | //Sets the text inside the DIV to the oven zone temperature.// |