The date picker is showing properly but when I click outside it doesn't close, I have too click on it again to close it. Following is the code I am using.
In HTML
<angular2-date-picker
[(ngModel)]="startTimeValue"
[settings]="startTimeSettings"
class=""
In TS
startTimeSettings = {
bigBanner: true,
timePicker: true,
format: "dd-MM-yyyy hh:mm a",
defaultOpen: false
};
