I want to show or hide field or picture like checkbox when I change listbox value, But I faced many issue to do that.
Can you please help me?
when I choose holiday type in this form
I want to check this in pdfreport like this:
if ({Holiday_Type} == “External”)
{
sc_field_display({Holiday_Type1}, on);
}
else
{
sc_field_display({Holiday_Type1}, off);
}
I try this also:
if ({Holiday_Type} == “External”)
{
sc_field_display({Holiday_Type1}, on);
sc_field_display({Holiday_Type1}, off);
}