746 questions
0
votes
1
answer
80
views
Bootstrap5 datetime picker calendar does not appear when click calendar icon ASP.NET Core 8 MVC
I have an ASP.NET Core 8 MVC application and I implemented a bootstrap datetimepicker (v4.17.47) and it showed the calendar. I also used font-awesome (v 4.7.0). Everything worked as expected. But when ...
0
votes
0
answers
138
views
Disable all days except any two date in a month bootstrap date picker
Dev,
I have requirements such as "Need to disable all the dates except 1st & 16th date every month".
My customer doesn't want to select the rest of the dates at any time. I have tried to ...
1
vote
1
answer
19
views
MVC5 Validator Error With Date and DateTime in same page
I have a date and a datetime field in my model :
[Display(Name = "Tanggal")]
[Required(ErrorMessage = "Tanggal harus diisi.")]
[DataType(DataType.Date)]
[DisplayFormat(...
0
votes
1
answer
301
views
vue-bootstrap-datetimepicker - append datetimepicker field with custom text
I want to customize the date time picker field. I am trying to append or add a suffix to the time.
My Code:
<date-picker v-model="time" class="portal-time-picker" placeholder=&...
0
votes
1
answer
454
views
DateTimepicker bootstrap with sveltekit
i want to write this code with svelte framework
<div class="container">
<div class="row">
<div class='col-sm-6'>
<div class="form-group"> ...
1
vote
1
answer
2k
views
Tempus Dominus (Datetimepicker for Bootstrap 4): Manual input of date through keyboard not working
JSFiddle: https://jsfiddle.net/09e7mrk5/3/
I'm using Tempus Dominus (the Bootstrap 4 Datetimepicker), in the Date & Time mode. Selections made through the GUI calendar work OK as can be seen by ...
0
votes
2
answers
430
views
DatetimePicker on the modal not displaying completely
The Datetimepicker is not displaying fully in the Bootstrap v3.3.7 model, despite my attempts to present it there. The date time picker is partially visible and partially hidden; similarly, the issue ...
0
votes
0
answers
357
views
Disable past dates in Bootstrap datetimepicker
I have application in Laravel where I use bootstrap Datetimepicker.
I want to disable all past dates in datetimepicker.
The input datetimepicker was in the modal by the way.
This is my blade code
<...
0
votes
1
answer
418
views
Automatically set minutes to 00 after user selects hours in Bootstrap Vue Timepicker
When user opens timepicker, hours and minutes should be empty. As soon as they select the hours, it should automatically set the minutes to 00. Thank you in advance.
<b-form-timepicker
v-model=...
0
votes
0
answers
92
views
How can i make date and time picked to be displayed as it is disappearing
In Flutter, I have used dateTimePicker in my code for date of birth filed , i am able to select the date but after selecting it shows that particular date only for some time, after that it is back to ...
2
votes
2
answers
12k
views
Tempus Dominus Datetime Picker How to set value?
Using v6 from tempusdominus datepicker
Reference: https://getdatepicker.com/6/functions.html
I have tried many function function trying to set a value to the datetime picker but nothing is working,, ...
1
vote
3
answers
5k
views
datetimepicker input automatically filled with current date and disable days before current date
i have a datetimepicker input, i want the input automatically filled with current date, but user still can change the date in the input.
i also want to disable the days before current date.
i've tried ...
0
votes
1
answer
48
views
Format results from bootstrap datetimepicker v4
I am using the following code:
$(document).ready(function () {
$('#myInput').datetimepicker({
format: 'YYYY-MM-DD',
});
$('...
5
votes
3
answers
60k
views
datetimepicker with bootstrap 5 not working properly
I am quite new to JS and trying to add datetimepicker to my web-demo. The tutorial works properly with bootstrap 3.3.7, but when I change it to version 5, the calendar is not showing anymore.
Minimal ...
0
votes
1
answer
74
views
Problem with using Bootstrap datetimepicker in clojurescript
I am trying to use Bootstrap datetimepicker in my clojurescript project as below :
(.datetimepicker (js/$ "#dateid")
but am ending up with Uncaught TypeError for datetimepicker function.
...