18 questions
0
votes
0
answers
205
views
Angular Bootstrap Datepicker custom date format dd-MMM-yyyy (e.g., "01-Sep-2023")
I have also use NgbDateParserFormatter but not solve this problem date format - dd-MMM-yyyy (e.g., "01-Sep-2023")
component.html
<div class="input-group">
<...
0
votes
0
answers
95
views
angular bootstrap datetimepicker not woking properly
In angular bootstrap datetimepicker choose date of previous month and datepick again then current month is displayed in popover
When I change the date, I get an error in the console.
I followed this ...
1
vote
1
answer
285
views
How do I add screen reader functionality to select-2 combo box and bootstrap's datetime-picker?
My pre-existing website has select-2 combo boxes for drop-down lists and I also have a Bootstrap Calendar widget. These work great, but aren't accessible to people who may have disabilities. I am ...
0
votes
3
answers
2k
views
ngb-Datepicker show wrong month on popup
I'm working with angular bootstrap datepicker and having some weird issues.
When opening the webpage everything looks alright, but when I want to change the date and I click on the calendar button to ...
2
votes
3
answers
5k
views
p calendar readonly not working in primeng
<p-calendar readonly="true" [showTime]="true" inputId="time" [hourFormat]="24" [minDate]="minDate" [maxDate]="tomorrow" inputId="...
2
votes
0
answers
1k
views
Unable to convert "13/7/2021" into a date' for pipe DatePipe in Angular 11
In my angular form I have used Angular Bootstrap Datepicker control to select date. After selecting date from datepicker, the date format I get from the control is "dd-MM-yyyy". Now I would ...
0
votes
1
answer
968
views
Module not found problem in angular bootstrap date formatter service
I am creating an Angular 10 application. In my component I have used Angular Bootstrap datepicker control. The default date format shown in the textbox is 'yyyy-mm-dd'. But I want the format in 'dd-mm-...
0
votes
5
answers
3k
views
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]]
}...
-1
votes
1
answer
305
views
Dates not binding in Angular
I am using Angular 7 for my Web app and have the following code in html:
<div class="form-group col-md-6">
<label for="myDate">My Date</label>
<div class="input-group">...
3
votes
3
answers
21k
views
I'm getting an error while importing the "ngx-bootstrap/datepicker" module in Angular 6
I am trying to import the ngx Bootstrap datepicker in my Angular Application
for that I followed the following stapes
to npm install ngx-bootstrap
npm install ngx-bootstrap --save
Installed ...
2
votes
3
answers
4k
views
I am getting error while Running Angular application
I have installed ngx Bootstrap into my Angular Application to use date picker
Now I am getting error while running the Angular Application
I am putting the details of the error below
ERROR in ...
0
votes
1
answer
504
views
Angular bootstrap calendar doesnt update view after adding or updating events
I am using mattlewis bootstrap calendar.Events are displaying correctly.But if i add new event to calendar it duplicates the events in other dates instead of adding event to the added date.Only after ...
1
vote
0
answers
315
views
Reset the css class applied on the calendar cell
I am using angular-bootstrap-calendar and wanted to change the color of the cell when i click on any cell in the month view. I am able to change the color using
on-timespan-click="timespanClicked(...
3
votes
3
answers
29k
views
How to set a default date and time to PrimeNG p-calendar
I have included p-calendar in my project with showTime="true" :
<p-calendar formControlName="pre_check_in" [defaultDate]="defaultDate" [minDate]="dateTime" showTime="true" hourFormat="24" ...
1
vote
1
answer
533
views
Display Short week days in angular-bootstrap-calendar instead of long week days
I'm using angular-bootstrap-calendar in Angular 4 app, and it displays long week days (ex: Sunday, Monday, etc...). Instead, I want short week days with 2 letters (ex: Su, Mo, etc...). Does it have ...
3
votes
1
answer
4k
views
Input type="month" format in google chrome
I have a input type="month" control and I am using Angular UI bootstrap as well.
When I select a month in IE it is shown as yyyy-MM format. But in google chrome it s shown as MMMM yyyy format.
When ...
3
votes
2
answers
1k
views
mattlewis92/angular-bootstrap-calendar calculating Wrong Dates on different Timezone
I am using this calendar https://github.com/mattlewis92/angular-bootstrap-calendar for showing events and time slots for people all over the world. During sign up, every user has to set his timezone ...
0
votes
1
answer
60
views
How to hide decrement button for past month?
Previous month button should be hidden with ng-show="isPastMonth(calendarDate)" for past month form the current month.
Is there any option in the angular-bootstrap-calendar to hide decrement="...