DHTML DateTime Picker

V

vijay

Hi

Does anyone know of a DHTML Date Picker that also allows to pick time
apart from the date.

I need it to enter Data and Time into a field that will ultimately
popular a column in an SQL Server 2000 table.

Thanks

Vijay
 
P

pcx99

vijay said:
Hi

Does anyone know of a DHTML Date Picker that also allows to pick time
apart from the date.

I need it to enter Data and Time into a field that will ultimately
popular a column in an SQL Server 2000 table.

Thanks

Vijay
<script>
t = new Date();
m = t.getMonth();
d = t.getDay();
dt = t.getDate();
y = t.getFullYear();
h = t.getHours();
if (h < 12) {
ap="AM";
} else {
ap="PM";
h=h-12;
}
mn= t.getMinutes();
s = (t.getSeconds();
if (h==0) {
h = 12
}

date=m+'/'+dt+'/'+y;
time=h+':'+mn+':'+s;

</script>

You can use t = new Date('January 06 2008 12:58:02 CST') if you need to
specify a specific time/date instead of just using the present time/date.

You can find out more about javascript's date object here:
http://www.w3schools.com/js/js_obj_date.asp

Good luck!
 
V

vijaynats

Thanks for the cool source-code. Well that's fine enough. But i want a
popup calendar like the one at -

http://www.dynamicdrive.com/dynamicindex7/jasoncalendar.htm

By far this is the best calendar script. But it does not have the
ability to enter time information.

My base requirement is that i have a text field (No multiple fields,
drop downs etc.) and when the user tabs into the field, a calendar must
popup which will allow the user to choose both date and time. When its
done the text field gets populated with the date and time. Something
like - 28/12/2006 09:30 PM

Is there such a DHTML date picker or will i end up writing one?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top