Hello,
I use onBeforeInsert in my table_edit.php to generate a value which should be added to the database (will come from another subsystem so it's not available during the form input).
currently i do the following but thing there is a better solution .
Code:
function onBeforeInsert()
{
global $app
$app->tform->errorMessage = myfunction($_POST) ;
$this->dataRecord['value'] = $_SESSION['value'] ;
unset ($_SESSION['value']) ;
}
Code:
myfunction($_VAR)
{
global $_SESSION ;
...
if (ok)
$_SESSION['value'] = "foo";
(else)
return "error foo :-(" ;
}
Recent comments
12 hours 16 min ago
18 hours 57 min ago
22 hours 48 min ago
1 day 26 min ago
1 day 8 hours ago
1 day 18 hours ago
1 day 19 hours ago
1 day 22 hours ago
2 days 3 hours ago
2 days 3 hours ago