3,363 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
82
views
MUI DateTimePicker Input Hour Styling
In the React MUI Datepicker,
how do I remove extra 0, for a Single Hour time?
Right now, its showing an extra 0 here.
Goal is following,
03:00 PM --> 3:00 PM
<LocalizationProvider dateAdapter={...
0
votes
1
answer
64
views
How to show both calendar and type-in time input in one modal using react-native-modal-datetime-picker?
I'm using the react-native-modal-datetime-picker package in my React Native project and want to display a single modal that contains both:
A calendar to select the date
A text input (not a clock ...
0
votes
1
answer
56
views
Selected time automatically shifting and unselected
I have configured the jquery datetimepicker by cdn. The datetimepicker have shifting the time 1 hour back from the input field value for each time opened the datetimepicker.
function onChangeSites() {
...
3
votes
2
answers
65
views
Jquery datetimepicker last day of month not working
I have a filter page with 2 datetimepicker as Start date (first day of month) and End date (last day of month). This is what I'm trying to do:
$(document).ready(function () {
var date = new Date(...
0
votes
0
answers
25
views
No overload matches this call Date(value) ReactJS
I use ReactJS and DateTimePicker from @mui/x-date-pickers to design a custom DateTimeInput. My code as below:
import { FieldValues, useController, UseControllerProps } from "react-hook-form";...
0
votes
0
answers
69
views
Changing background color of DateTimePicker control while keeping text selection highlight for changing time C#
I’m very new to using Winforms so forgive me if this is a silly question, but I’ve been having some difficulty and I figured maybe someone with more experience would be able to answer this for me.
I’...
1
vote
1
answer
102
views
Setting colour properties of Date / Time Picker in MFC
Create a Dialog project and:
add a Date / Time picker to the dialog
map it to a control
override OnInitDialog
In OnInitDialog do the following:
SetWindowTheme(m_Date.GetSafeHwnd(), L" ", L&...
0
votes
0
answers
36
views
How to customize the MUI DateTimePicker size?
I am using MUI's DateTimePicker in my React project and want to customize its size, specifically making it smaller. I tried modifying some slotProps to decrease the size of each individual component ...
0
votes
0
answers
30
views
How do I scale the Safari date-time-edit when the page is zoomed?
I have a very simple <input type="date" /> element in my markup. One of our users reported that on Safari, when the page is zoomed in, the calendar does not scale with it (this picture ...
0
votes
0
answers
107
views
why compare two dates Journal Date with date Today Not matches or not working on jQuery?
I work on the client side using jQuery and I am facing an issue where the journal date is
less than the current date but still matches the criteria, causing the condition to be met
and the code to ...
1
vote
1
answer
789
views
ReactNative 0.76.2 Expo SDK 52 Unimplemented component <RNDateTimePicker>
I am getting Unimplemented component <RNDateTimePicker> for @react-native-community/react-native-datetimepicker after upgrading to Expo SDK 52
Does anyone know what might be causing it?
It used ...
1
vote
1
answer
339
views
Upgraded Angular -11 to 17, Now DateTimeAdapter (OwlMomentDateTimeModule) Failing on dateTimeAdapter.localeChanges.subscribe
I upgraded from Angular 11 to 17. If I comment out in HTML my OwlDateTimePicker, the app loads fine. Is it really possible the OwlMomentDateTimeModule Moment Adapter just doesn't implement the ...
1
vote
1
answer
118
views
How to disable days of the week by periods?
I'm currently trying to add a date picker (Boostrap datepicker) and disable certain days of the week, like Mondays, to prevent reservations on those days when the office is closed. I found the ...
0
votes
1
answer
85
views
Save date in Persian Calendar format at SQL
I have a DateTimePicker in my windows form app which show the date in Persian Calendar. But when I want to insert date in my table which is date type, it saves it as Gregorian date.
There are many ...
1
vote
1
answer
99
views
Display Vaadin Date-Time Picker in a Column Layout
I want to display a datetimepicker in a column layout with Vaadin 23.
DateTimePicker dateTimePicker = new DateTimePicker();
dateTimePicker.addClassName("stacked");
add(dateTimePicker);
It is ...