navcan
Posts: 61
|
| Posted: 02/06/2006, 9:00 AM |
|
I am using ASP 3 with Access DB, client machine is XP SP2, IE 6
Starting this morning, all my forms where I have datpicker, stopped working, when users click on DatePicker icon, the date window opens for about two seconds and then it get closed., does not even give a chance to pick a date. I know that popup blocker is off. Don't know what is causing this problem. Is anybody else having the same problem??
Please advise...
|
 |
 |
Vasiliy
Posts: 378
|
| Posted: 02/06/2006, 9:43 AM |
|
I had similar problem - date picker stopped working.
Tried to solve the problem, could not. Reported to Yes, have got "have a nice day". Killed all date pickers in all web-apps.
I'd spend more time with CCS date picker, but it is:
- popup (potential problem with some clients),
- not very convenient (subjective point of view)
Now preparing to use http://www.dynarch.com/projects/calendar/.
Below is a sample call:
----------------------------------
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>JS Calendar (positioning test)</title>
<script type="text/javascript" src="calendar.js"></script>
<script type="text/javascript" src="calendar-setup.js"></script>
<script type="text/javascript" src="lang/calendar-en.js"></script>
<style type="text/css"> @import url("calendar-win2k-cold-1.css"); </style>
</head>
<body>
<input type="text" id="cal-field-1" /><button type="submit" id="cal-button-1">...</button>
<script type="text/javascript">
Calendar.setup({
inputField : "cal-field-1",
button : "cal-button-1",
align : "Tr"
});
</script>
</body>
</html>
_________________
Vasiliy |
 |
 |
dragoon
Posts: 173
|
| Posted: 02/06/2006, 9:55 AM |
|
see this post:
http://forums.yessoftware.com/posts.php?post_id=70608
|
 |
 |
|