hi there.
i’m using a wizard form to get some info from users. the user have to choose a date on a monday. so i use to test. norhing happend the app hangs and no error in debug. any suggestions?
OnValidate
if (sc_get_wizard_step() == 5) {
if (WEEKDAY("{ev_datum_start}") == 0)
{
sc_error_message("Maandag");
}
else
{
sc_error_message("Andere dag");
}
}