2

I am using angular material for my project.

I need date range picker for some functionalities & date-time range picker for some functionalities.

I have searched for it but i am not able to find any picker with all working functionality.

I have tried smDateTimeRangePicker but it didn't work with start-date. always open picker with current date. it also doesn't have functionality of dynamic min/max date.

Can anyone point me on right direction where i can fine range picker with working start, min, max,.. functionalities.

Ankur Akvaliya
  • 2,989
  • 4
  • 28
  • 53
  • seems like answer doesn't match with material date picker .. can it be possible with https://material.angular.io/components/datepicker/examples ? – Vivek Chaturvedi Apr 22 '19 at 15:30

1 Answers1

0

The best angular js date time picker is We can choose 720kb datepicker for date alone, it has nice UI and nice features. 720kb datepicker

<datepicker date-format="MM/dd/yyyy">
   <input type="text" maxlength="10" id="dtdate"
       ng-model="model.date" placeholder="mm/dd/yyyy">
</datepicker>

The best time picker is angular moment picker angular moment picker for time

<input show-header="false" moment-picker="@NGModel2" format="HH:mm" 
today="true" min-view="day" ng-model="model.time" maxlength="5 " 
id="time"  placeholder="HH:mm" />

The screenshot for both date picker and time picker below date time picker snapshot

Hari
  • 117
  • 4