Default values in Calendar

I have a form, one of the fields is a {type:“calendar”…}

This value is initially null on the server.

I would like that field to look empty (not contain 1900-01-01 or such thing) until the user actually choses a date. And when the user clicks on the field, I would like today’s date to appear, not 1900-01-01. Any easy way to do that?

If you need an empty input field, you can set date as “”

{type: "calendar", dateFormat: "%Y-%m-%d %H:%i", name: "start_date", label: "Start Date", value: "", enableTime: true, calendarPosition: "right"}

Thank you Darya, does the trick.

You are welcome!