updating date field

How it can be possible to prevent date column automatically updating with current date while add/edit events in php maker? When I am adding or editing a form, the date columns are updating with current date even if I am leaving it empty.
Thanks for the help.

girishgee wrote:

When I am adding or editing a form, the date columns are updating with current date even if I am leaving it empty.

If you set up AutoUpdate, it will be updated. You may remove it and use Row_Inserting/Updating server events (see the topic Server Events and Client Scripts in the help file) to update the date with CurrentDateTime() only if the field is empty.

Thank you. It’s worked out.