Morning,
I want to send an email in the after edit/add events.
In my table are the link values for the lookupwizard, i.e. 1,2,3
the value I want to send is the name of the data with id 1 in this case name = open.
how can I get the same value as is displayed in the edit page?
Which wizard function can I use to get one value and not the whole selection list?
Another question
How can I just send the displayed fields in the edit page, the after add function sends all fields
foreach($values as $field=>$value)
{
if(!IsBinaryType(GetFieldType($field)))
$msg.= $field." : ".$value."\r\n";
}
This is a generall problem in the export print lists that the wizard link value is displayed and not the name value.
To get the correct language Label I use
$field_labels[$strTableName][$_SESSION["language"]][$field]
Which works fine.
thanks in advance for any help.
Robert