Tagged Questions
The jQuery UI Datepicker is a highly configurable plugin that adds datepicker functionality to your pages
0
votes
0answers
5 views
trying to modify current jquery ui datepicker to show range
I have this working fiddle (http://jsfiddle.net/sunnyday195/3FC7n/) and although its working somewhat I still need it to do 2 more things:
when you focus in on the return I want to show the current ...
0
votes
0answers
9 views
Jquery Datepicker - How to hide clear and “step” buttons?
I inherited a project for a client. The client doesn't want to have the "clear" buttons and the "step" (which increments the day/month/year by one) shown anymore. I can't figure out how to make these ...
0
votes
2answers
16 views
Setting a minimum date on a jquery datepicker
I am trying to create a DatePicker out of a textbox using jQuery. I have the following code:
$(function() {
$("#ctl00_ContentPlaceHolder1_txtServiceDateRequested").datepicker({
showAnim: ...
0
votes
2answers
49 views
datepicker jquery in bootstrap
I cant seem to get datepicker (jquery) to work in my bootstrap register page. I tried to click but nothing seem to happen.
did i miss out anything? Do take a look at the code below!
datepicker from ...
0
votes
1answer
23 views
jQuery datepicker in Symfony2 gives 'This value is not valid.'
I added a jQuery datepicker in my symfony2 form.
twig file:
$('.date').datepicker({
showOn: 'button',
buttonImageOnly: true,
changeMonth: true,
changeYear: true,
dateFormat: ...
0
votes
0answers
17 views
Dialog datetimepicker unable to pick and the datepicker fall behind
here my code :
$(function () {
var dtFormat = 'dd-M-yy';
$("#newsDate").datepicker({
dateFormat: dtFormat,
showOn: "button",
buttonImage: "@Url.Content("~ / ...
0
votes
1answer
23 views
year/month only datepicker inline
I need to create a jquery ui datepiker that only shows year and month:
$(document).ready(function () {
var montPiker = $(".monthPicker").datepicker({
changeMonth: true,
...
0
votes
2answers
31 views
Dates not appearing consistently in Chrome and Firefox
The following code runs for a jQuery UI datepicker. Dates are highlighted based on whether a JSON response contains data for that date. This works fine in Chrome (32.0.1675.2 canary) but not in ...
1
vote
1answer
64 views
Always getting null in datetime field in mvc4
my problrm is very similar to the question in Getting date time always null back to controller in MVC3
But, even though I have specified the DataAnnotations, and also specified the format in the ...
0
votes
1answer
28 views
jQuery DatePicker - adding class to dates removes the default ones
When using the jQuery Datepicker I need to add different classes to different dates, but doing so removes the default classes, like ui-datepicker-current-day for the currently selected day. How can I ...
-1
votes
1answer
16 views
Yii CJuiDatePicker not working after cloning the form
Before posting a question here I tried this
. But unfortunately nothing worked for me.
CJuiDatePicker which is not working after cloning the form.
Following is my cloning code:
function ...
-2
votes
0answers
50 views
date picker not working for dd mm yy
I'm using below code to select date and its not working.
var opts = {
changeDay: true,
changeMonth: true,
changeYear: true,
showButtonPanel: true,
dateFormat: 'dd mm yy',
...
1
vote
3answers
93 views
+100
Why I can't use datepicker twice in the same table?
I know that there are simmilar questons, but I really can't find an answer fitting on my issue.
I have this HTML table witch is looping trough an array - defined in my viewModel:
<div ...
0
votes
2answers
59 views
How to disable all the dates that comes before the selected date? [duplicate]
I am a newbie to the Jquery and I am developing an Hotel application, where the users are allowed to select the 'check-in' and 'check-out' dates, and I am using a datepicker for these fields. ...
0
votes
1answer
28 views
jquery datepicker determine first shown date clicking next month
I want to get the first shown date of a datepicker when clicking on next (or previous) month.
The datepicker shows 2 months (eg november and december) and when i click on next month i want to trigger ...