I use jQuery datetimepicker which was extended from jQuery datepicker to pick not only date but time too.

I want to set date/time format this way: dd-mm-yyyy @ hh:mm

$('#timePicker').datetimepicker({
  dateFormat: 'dd:mm:yyyy',
  separator: ' @ ',
  minDate: new Date()
});

But this does not work. I get date/time in following format:

Thu Jan 27 2011 02:05:17 GMT+0100

Is there any javascript function to format this date/time? If not how do I do that using the plugin? Check out my code: FIDDLE

link|improve this question

Why do you use a div (and not an input element)? Plus: kelvinluck.com/assets/jquery/datePicker/v2/demo/… may be useful. – abesto Jan 26 '11 at 7:33
I do not want an input...it does not work....and I use datetimepicker not just datepicker – ArtWorkAD Jan 26 '11 at 7:37
Do you want the "alerted" value to be displayed as "dd-mm-yyyy @ hh:mm"? – Salman A Jan 26 '11 at 11:56
it is alerted just for testing, later I want to store it in db – ArtWorkAD Jan 26 '11 at 12:01
feedback

2 Answers

up vote 1 down vote accepted

Here you go.

$('#timePicker').datetimepicker({
    dateFormat: 'dd-mm-yy',
    minDate: getFormattedDate(new Date())
});

function getFormattedDate(date) {
    var day = date.getDate();
    var month = date.getMonth() + 1;
    var year = date.getFullYear().toString().slice(2);
    return day + '-' + month + '-' + year;
}

You need to pass datepicker() the date formatted correctly.

link|improve this answer
thank you very much! – ArtWorkAD Jan 27 '11 at 9:19
feedback

What I normally do is set up a small div and display the date there, like this:

<div id="mydivitem"></div>

$("#datepickerbutton").datepicker({
   altField: '#actualDate',
   altFormat: 'dd:mm:yyyy'
});

I don't have time to try it, but I'm pretty sure that should work... Hope I can help, and sorry for the quick reply. David

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.