hi,
i’d like to “conditionalize” a return page.
is it possible ?
i search in phpmaker interface, but we can only enter a fixe table in basic event (after add, after edit, …etc)
what if my returning page depend of an edit field value ? i tried to perform such beautiful process (kind of workflow in ERP).
i saw there is the event function Page_Redirecting but the parameter does not contain ($rsold, &$rsnew) which i need to perfor my test.
if would be good to have the feature to do :
$my_condition=$rsold[“myfield”]==“no” && $rsnew[“myfield”]==“yes”;
if ($my_condition)
Page_Redirecting (“www_somewhere”);
else
Page_Redirecting (“www_somewhere_else”);
is it possible in some way ?