2

I am using angular material datepicker https://material.angular.io/components/select/overview

but this returns only the date and not the current time : Mon May 28 2018 00:00:00 GMT+0530 (IST)

Is there any way I can get the current time also from this?

ian dsouza
  • 187
  • 2
  • 4
  • 14

4 Answers4

4

You can use the ngModelChange to parse the date before setting it to your model, I recommend you momentJS for easy date manipulations.

in the HTML

 <input [ngModel]="date" (ngModelChange)="onDataChange($event)"  matInput [matDatepicker]="picker" placeholder="Choose a date">

In your Component.ts

  onDataChange(newdate) {
    const _ = moment();
    const date = moment(newdate).add({hours: _.hour(), minutes:_.minute() , seconds:_.second()})
    this.date = date.toDate();
    console.log({hours: _.hour(), minutes:_.minute() , seconds:_.second()})
  }

you can find the full solution here https://stackblitz.com/edit/angular-ecq2lc

segito10
  • 379
  • 6
  • 14
0

The angular material is not providing Time right now you need to manually get time from timeStamp, Try this -

function getTimeFromDate(timestamp) {
  let date = new Date(timestamp * 1000);
  let hours = date.getHours();
  let minutes = date.getMinutes();
  let seconds = date.getSeconds();
  return hours+":"+minutes+":"+seconds
}

let timeStamp = new Date("Mon May 28 2018 00:00:00 GMT+0530 (IST)")
console.log(getTimeFromDate(timeStamp));
Pardeep Jain
  • 84,110
  • 37
  • 165
  • 215
0

Right now the material date picker provides just the current date (without the current time), but there is an open issue in the official repo, so we might see a time picker in the near future.

0
        For Example currenttime = Mon May 28 2018 00:00:00 GMT+0530 (IST)

    Currenttime is an example if  u using current date means just use new Date()  

    //Sample function calling Method 
            Exacttime(){
            this.functionName = this.diffhours(new(currenttime))
            }

            diffhours(currenttime){
               var diff = new Date(currenttime);
                diff .getHours(); // => 9
                diff .getMinutes(); // =>  30
                diff .getSeconds(); // => 51

}