Questions tagged [datetimepicker]

GUI component that allows the user to select a date and a time and to display the date and time with a specified format.

DateTimePicker is used to select a date and time, and to display that date and time in the specified format. DateTimePicker makes it easy to work with dates and times because it handles a lot of the data validation automatically.

3104 questions
17
votes
4 answers

Date format in Bootstrap datetimepicker

I am just working on Bootstrap datetimepicker, and I am done that. A small problem is there, I tried to change the selected date format and failed. How can I fix this? This is my code: $('.datepicker').datetimepicker({ dateFormat: "dd-mm-yy", …
rb vishnu
  • 928
  • 4
  • 16
  • 30
16
votes
9 answers

How to change format (e.g. dd/MMM/yyyy) of DateTimePicker in WPF application

I want to Change the Format of date selected in DateTimePicker in WPF Application
Rajendra
15
votes
4 answers

How to get datetimepicker c# winform checked/unchecked event

There is a check box in the datetimepicker control of winforms .net. But I could not find the event that is triggered when the check box is checked or unchecked . Is there a way out?
Thunder
  • 9,267
  • 24
  • 75
  • 112
15
votes
6 answers

How to change culture to a DateTimepicker or calendar control in .Net

How to set internationalization to a DateTimepicker or Calendar WinForm control in .Net when the desire culture is different to the one installed in the PC?
Oscar Cabrero
  • 4,160
  • 7
  • 27
  • 49
15
votes
13 answers

How to show only date in JQuery Datetimepicker addon?

I've searched high and low for an answer to my question but haven't found one, I did find two related questions though: JQuery Datepicker should display date only , jQuery UI DateTimepicker - cannot hide the time But they didn't solve my…
Robert Persson
  • 181
  • 1
  • 1
  • 8
15
votes
3 answers

DateTimePicker for WPF 4.0

According to this post, there's a separate DatePicker control in .net 4. I've tried it, and I don't see a good way to also let it select the time of the day. Is there an easy way to transform DatePicker into DateTimePicker by editing XAML template?…
Arsen Zahray
  • 21,834
  • 46
  • 119
  • 205
15
votes
6 answers

jQuery Datepicker and Timepicker for same input field to popup one after another

I have a Datepicker and a Timepicker in 2 separate input fields but I need to combine the 2 fields inputs into one for a database call. Wanted to know if I could only use 1 input field for both controls? first call the datepicker and the user would…
Phill Pafford
  • 77,927
  • 86
  • 256
  • 378
14
votes
9 answers

Bootstrap 3 Datetimepicker 3.0.0 - make a week start on Monday

There are few reasons I use Bootstrap 3 Datetimepicker 3.0.0 in my MVC 5 project. Any idea how to offset week start so it starts from Monday? Language tag also not working. $(function () { $('#PickupTime').datetimepicker({ weekStart: 1 …
13
votes
3 answers

DateTimePicker never updates!

I have some DateTimePickers in a form that never update. I've tried Value and Text, Invalidate() and then Update() and also Refresh()... Nothing seems to change their values from the current date! No matter what I set, the current dates are…
Vercas
  • 8,248
  • 15
  • 60
  • 102
13
votes
5 answers

How can I set the datetimepicker dropdown to show Months only

So instead of this showing up on clicking the dropdown menu. I want the dropdown to be like this when clicked. Thanks a lot for any help. :)
Bigboss
  • 335
  • 1
  • 3
  • 15
12
votes
8 answers

Set DateTimePicker value to be null

I am developing a WinForms UI with two DateTimePicker controls. Initially I want to set the value of the controls to null until a user selects a date. If the user does not select a date, it will pass a value of null to the database. By default it…
Manali
  • 285
  • 3
  • 5
  • 16
12
votes
1 answer

ios like date/time picker for android platform

I'm building mobile app for both ios and android platform using native ios/android code. And I want apps looks similar. So I need ios style picker (for date and time selection) available in android. I spend half of the day but don't find any sutable…
silent_coder
  • 5,370
  • 10
  • 39
  • 82
12
votes
4 answers

how to set jquery datetimepicker mindate is tomorrow

My jquery code: $('#DatePicker').datetimepicker({ timepicker : false, format : 'd.m.Y', minDate : 0 }); In this jquery i am using datetimepicker plugin.i want set min date is tomorrow date.in this code i set min date is…
nmkkannan
  • 1,213
  • 3
  • 26
  • 46
12
votes
3 answers

Datetime filter in kendo grid

My code is in C# .NET I am using Kendo Grid version 2013.2.716.340 and server binding to show data in grid. In Kendo UI Grid, I have a dateTime column but the column filter input only has a date picker but no time picker. Due to this if I select the…
kumawatp
  • 313
  • 2
  • 4
  • 14
11
votes
2 answers

how to hide second and millisecond from jquery ui datetimepicker

I use jquery-datetimepicker in this link my simple code like this $(".datetimepicker").datetimepicker(); but the GUI appear like this I want date calender and time by (Hours and Minutes) only appear in the widget I trying this code but no…