Questions tagged [angular-daterangepicker]

Date Range Picker for AngularJS and Bootstrap (out of date)

Resources

Github - angular-daterangepicker

Angular.js directive for Dan Grossmans's Bootstrap Datepicker.

Maintainer needed!

Hello, as you may noticed, we have troubles maintaining this repo. So if there is somebody willing to help merging PRs, testing and releasing, please contact me at lukas.marek(at)fragaria.cz. Thank you!

60 questions
0
votes
0 answers

Ngb Datepicker Select Multiple Day

[ { "year": 2022, "month": 11, "day": 23 }, { "year": 2022, "month": 11, "day": 26 }, { "year": 2022, "month": 11, "day": 6 } ] I want to fetch dates coming as json selected in DateTimePicker.…
0
votes
0 answers

Cannot set properties of undefined when i click close buton - angular material date

I am trying to clear the date field and user have to enter the date manualy. I am using angular date Material. Here is my error Here is my html code.
Mr.M
  • 1,472
  • 3
  • 29
  • 76
0
votes
0 answers

Active date picker date with dynamic date which providing from back-end

Frind's. I have a simple Angular application with the material date picker. In this application some data providing from the back-end. Now I do like to active the date picker date, based on the back-end dynamic data(which date has data). The below…
0
votes
1 answer

How to remove MAT_DATE_RANGE_SELECTION_STRATEGY dynamically in angular

I am trying to implement a datepicker in angular with custom MAT_DATE_RANGE_SELECTION_STRATEGY. Which allows user to select a 14 day range. Using below code (taken right out of angular documentation) to implement custom…
VIRIYALA NARESH
  • 187
  • 1
  • 4
  • 17
0
votes
0 answers

DateRange Picker with multiple ranges (comparison) for Angular 2+

I am looking to find a date range picker for Angular 2+ that works similar to this Vue component that I've found. I have searched and searched, and I haven't been able to find anything. If anyone knows of something, I would be forever grateful! I…
0
votes
2 answers

How can you add an "index" to the Angular Material Datepicker Filter

So I have to make quite a complicated filtering (which I managed to do it) but now I'm pretty much stuck, I have to use the same filter (or at least the same logic) to more date pickers (worth to be mentioned that the number of date pickers is…
user9802118
0
votes
1 answer

ERROR in : Unexpected value 'NgxMatDrpModule in node_modules/ngx-mat-daterange-picker/ngx-mat-daterange-picker.d.ts'

While working on an Angular 7 app, encountered below error while building using ng build --configuration=dev As seen in the exception there's an single quote prefixed to NgxMatDrpModule. Tried deleting node_modules, package-lock.json and…
0
votes
1 answer

Angular new date range filter bug?

Angular 10 I'm trying to set both startDate and endDate of Angular Date Range filter back to null, but it seems like when setting startDate to null, the endDate get auto-injected with the previous value. In the picture below,…
Hokhy
  • 1
  • 1
0
votes
1 answer

Date range picker does not show next arrow but shows previous arrow

I am working with DateRangePicker and I am not shown the following arrow, I don't know what I have configured wrong. As we see the image should have on the right side an arrow too, this time I went back to 2020 so you can see that I don't have the…
0
votes
5 answers

Angular TypeScript how to assign Date

How can i bind date to date selector? const TodayDate = "19-11-2020"; ngOnInit() { this._MyregisterForm = this.formBuilder.group({ today_Date:[this.TodayDate, [Validators.required]] }); } HTML
0
votes
1 answer

How to get check for current month in Daterangepicker?

I want to do something like this, I tried multiple ways but I am unable to find it. I am getting start and end date but not the current month. I want current month so it works with all locale if(CURRENT MONTH){ // Do This }
0
votes
0 answers

My angular material date range picker is not working and doesn't provide an icon to select

I've copied the identical code from StackBlitz and the material date range picker isn't working in my app. here is the exact code I'm using: Enter a date range
D.Hodges
  • 1,794
  • 4
  • 24
  • 47
0
votes
0 answers

Implementing a date range picker in angular 1x

Everyone, I need your help, I want to implement a date range picker in angular 1x. I installed this one https://github.com/fragaria/angular-daterangepicker the project I'm working with is pretty big, it has a ton of folders and files, look like this…
frescobar
  • 125
  • 1
  • 5
0
votes
1 answer

Disable Specific Date in ng Bootstrap datepicker

I am using Angular 8 where I am using ngDatePicker for choosing Date I am able to validate min and max date range ** But I am not able to disable specific dates Example June month disable 15th and 17th of June July month disable 18th and 10 of…
0
votes
1 answer

Disable or remove mintues dropdown from daterangepicker

I want to disable future hours from daterangepicker, i've tried "maxDate": moment().utc().startOf('hour'), but this is disabling future dates only not hours. Also, how can i disable minutes dropdown or just remove it daterangepicker as i want to…