@kafecadm
according to the SC documentation sc_field_disabled in forms can be used in onLoad or onNavigte events only.
But the major issue seems to be in general when events occour in relation to when the data is updated in the {fieldname} and\or [var] variables.
E.g.
I just tried this in a single record form:
[B]
[SIZE=2]field1 [/B]<-- any field from the db table used by the form
\- field general setting:
- Save Variable: yes
- Variable Name: myvar
[B]filed2 [/B]<-- created in the form
\- field general setting:
- Data type: label
- Text :[myvar][/SIZE]
Now, while I would expect field1 and field 2 to show exactly the same content always, when I navigate the form field 2 always show the field content of the previous record, except at startup when it’s empty
RECORD1
field1: 1
field2: empty <-- shouldn’t this be 1?
RECORD2
field1: 2
field2: 1 <-- shouldn’t this be 2?
RECORD 3
field1: 3
field2: 2 <-- shouldn’t this be 3?
end so on…
Can anyone explain to me why?