Hi,
I have a date field that i initially populate like (Events -> onLoadRecord):
if (empty({BuchungId}) )
{
{BuchungsdatumId} = date('Ymd');
{ZahltypId} = 2;
}
However, if I use the copy button in an editable grid view I don’t want that initial value to show, but I want the copied value to appear.
I am looking for a solution like:
if (empty({BuchungId}) && [[notclickedcopybutton]] )
{
{BuchungsdatumId} = date('Ymd');
{ZahltypId} = 2;
}
Thank you for your help and best regards,
Konstantin