Dear All,
I was developing one component using Angular 6 and ASP .net MVC 5 with Rest Api.
I am just started using jquery in my project. I have successfuly installed jquery and bootstrap in Angular 6.
I am very new to use jquery.
Now I can able to select multiple dates from a date picker using following code : -
- $('.datepicker').datepicker({
- startDate: new Date(),
- format: 'yyyy-mm-dd',
- multidate: true,
- daysOfWeekDisabled: [0],
- todayHighlight: true,
- daysOfWeekHighlighted: [1, 2, 3, 4, 5, 6]
- });
How can I get those selected dates from date picker.
Please let me know if anyone have solution on this.
Any suggestion will be accepted.
Thanking you in advanced,
Regards.