I have this scrip On Load Form:
-
tut_str = List();
tut_str = impianti.distinct(Struttura);
Struttura:ui.add(impianti[Struttura = tut_str].Struttura);
When I save script from another tab like On User Input, script became:
-
tut_str = List();
tut_str = impianti.distinct(Struttura);
Struttura:ui.add(impianti[Struttura =
"tut_str"
].Struttura);
tut_str -> "
tut_str" Why? Thanks!