Hi
I?m too stupid for this tool! Since hours I try to find out how to show or hide a field in a grid form.
The field should be shown if an other field in the same row has an specific value.
The specific value is shown in the field and coms from the selected table!
I tried to put following Statement in several Actions:
-onSricpinit
-OnFocus
-onLoad
-onLoadRecord
-onNavigate
/**
- Hide/show a field
*/
if ({fragenart} == ‘2’) // Display field
{
sc_field_display({Antwort}, ‘off’);
}
else // Hide field
{
sc_field_display({Antwort}, ‘on’);
}
The sc_field_display works only my condition is not working!!