Commissioning Manual
322 6FC5397-4EP10-0BA8, 07/2018
The tag controls the behavior of the dialog forms when user inputs are being saved.
The behavior should be defined within the INIT tag.
If the tag is not used, inputs are buffered in each case.
Exception: Controls for which the
attribute is set to
are always written to and
read directly.
•
= "TRUE" – the input values are not buffered. The dialog form copies the input val-
ues to the reference variables directly.
•
"FALSE" – the values are only copied to the reference variable with the
type = "FALSE" tag.
<DATA_ACCESS type = "true" />
This tag is called if the contents of an edit control have changed.
To identify the control, the system copies the name of the control into variable
and the value of the attribute
into variable
.
<EDIT_CHANGED>
<print text="index changed filed:%s, %d"> $focus_name, $fo-
cus_item_data </print>
…
…
The tag is called, if the operator changes the selection of a combo box.
To identify the control, the system copies the name of the control into the variable
and the value of the attribute
into the variable
.
A reference variable assigned to the control, has not been aligned to the control variable at
this point in time and contains the index of the previous selection of the combo box.
<INDEX_CHANGED>
<print text="index changed filed:%s, %d"> $focus_name, $fo-
cus_item_data </print>
…
…