Empty date in TWebDBDateTimePicker

Good day,
Has anyone been able to work with an NULL or empty date with TWebDBDateTimePicker which expects date in the TDateTime field type?

Basically, the REST API sends value NULL or '' or '0' and the user needs to see an empty date field as they would on a regular HTML page/app.

Also, related is the ability to 'Clear' the value back to empty.

The solution to this is:
DataSet.FieldByName(fieldName).Clear;

this can of course be WebClientDataSet.FieldByName(fieldName).Clear;

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.