News
2004/09/27 14:21
Viewed 47290 times
Replies: 6/16

News? No news is good news! :-)

Calendar 1.0 Released
2005/03/07 17:29
Viewed 20907 times
Replies: 1/3

We released today version 1.0 of our wonderful calendar widget. It has been a long way, but however, we believe that it worths the efforts.  We wish to thank to the whole community for the precious feedback provided over these years.  Enjoy our product! ;-)

last
Re: Calendar 1.0 Released
2005/10/12 07:45
Viewed 22453 times
Replies: 1/2

I have downloaded the latest version and just wondering if the following is achievable.

I am wanting a Flat (Static) Calendar that allows multiple date selection and then when you press a 'Submit' button it calculates how many days are currently selected.

I would rather have a 'Submit' button function rather than the OnClose function to calculate this information as I want the Calendar to constantly show on the screen.

Is this possible?

Regards,
Kelly.

last
Additional Text
2005/12/15 02:48
Viewed 16778 times
Replies: 0/0

Hey, I thought it might be really cool to do the following but I cannot figure out how: Instead of the day and date appearing in the footer window (just below the calendar), I would like to have a message show up there instead. For example, when a user rolls over Mon., Dec. 19, the box below the calendar doesn't list the date but something else, like "John's Birthday." Is this possible? Thanks!!

last
disable Special Days and weekend days
2006/08/29 20:35
Viewed 13760 times
Replies: 0/0

Hola a todos aqui les dejo como solucione mi problema para desabilitar los feriados domingos y festivos del calendario:

1.-
Agregar en calendar-setup.js al final

//meses y dias desabilitados
var SPECIAL_DAYS = {
0 : [ 1 ], // Dias especiales en Enero
//1 : [ ], // Dias especiales en Febrero
//2 : [ ], // Dias especiales en Marzo
3 : [ 14, 15, 16 ], // Dias especiales en Abril
4 : [ 1, 21 ], // Dias especiales en Mayo
5 : [ 12, 26 ], // Dias especiales en Junio
//6 : [ ], // Dias especiales en Julio
7 : [ 15 ], // Dias especiales en Agosto
8 : [ 18, 19 ], // Dias especiales en Septiembre
9 : [ 9 ], // Dias especiales en Octubre
10 : [ 1 ], // Dias especiales en Noviembre
11 : [ 8, 25 ], // Dias especiales en Diciembre
};

function dateIsSpecial(year, month, day) {
var m = SPECIAL_DAYS[month];
if (!m) return false;
for (var i in m) if (m[i] == day) return true;
return false;
}

function disableDateP( date, y, m, d )
{
if (dateIsSpecial(y, m, d))
return true; //dias especiales desbilitados
else
return (date.getDay() == 0 || date.getDay() == 6) ? true : false;
//false para habilitar todas las demas fechas y true para los domingosa y festivos
}

2.- Agregar el calendario a la web

<input name="fecha_vb_cliente" type="text" id="f_vb_cliente" size="10" maxlength="10" readonly="1" />
<input name="b_vb_cliente" type="image" class="sinborde" id="b_vb_cliente" src="imagenes/calendario.gif" alt="Calendario">
<!-- script que define y configura el calendario-->

<script type="text/javascript">

Calendar.setup({
inputField : "f_vb_cliente", // id of the input field
ifFormat : "%d-%m-%Y",
//ifFormat : "%B %e, %Y", // format of the input field
button : "b_vb_cliente", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
//range : [2006],
dateStatusFunc : disableDateP,
singleClick : true
});
</script>

Bueno ojala a alguien le sirva me costo mas que la chucha hacer que esta wea funcionara pero hasta que funciono....

Saludos.
cualquier cosa mi email arriagada@gmail.com
Rodrigo Arriagada Q.
Santiago
Chile

last
release 2.1
2007/06/22 13:43
Viewed 9040 times
Replies: 2/5

I've been looking your page and it says that you have a release 2.1, but i am looking for the download page and i can't find it.

Can you tell me where is it?

Thanks

last
Re: release 2.1
2007/06/22 14:52
Viewed 11255 times
Replies: 2/3

Where do we mention a 2.1 version for the Calendar?

last
innerHTML Problem (Sorry cant find how to start new thread)
2007/08/28 03:49
Viewed 13493 times
Replies: 0/0

i dinamically make a table (in php), inside are inputs text areas and i use a calendar for every row that i create (dinamically), I inserted to the main page by innerHTML, and I put an alert to see the code, everything looks good, but the calendar didnt work, I mean the image its ther but i clicked and nothig happends. I copy/paste the code of one row directly to the main page and it works! but not by innnerHTML, any idea why??? Code:

<input type="text" size="10" id="conflot_lote[x][y][terminacion]" name="conflot_lote[x][y][terminacion]" class="cuadrotexto">
<img src="images/calendar.png" id="boton_fecha[x][y][terminacion]" />
<script type='text/javascript'>
Calendar.setup({
inputField : 'conflot_lote[x][y][terminacion]',
ifFormat : '%Y-%m-%d',
showsTime : false,
button : 'boton_fecha[x][y][terminacion]',
align : 'Tl',
singleClick : true
});
</script>

(where x and y are variables)
The HTML display properly and the javascript text too.. dont know what else can i do! help!

last
The DHTML Calendar
2008/02/15 16:12
Viewed 4551 times
Replies: 2/2

Hi, I downloaded and used the DHTML Calendar. It works fine and looks pretty good when i use lang/calendar-en.js.
But when i use any of the other calendar-xx files, then the calendar is not displayed properly.
Iam importing the calendar.js, and calendar-setup.js in my html and jsp.

I find that all the other calendar-xx files, have some varilabes missing (like Calendar._SDN, etc) when i compare with the calendar-en.js. Not sure if that is the reason.

Can you tell me how i should i use them, so that in all languages the calendar is displayed properly.

Thanks,
Ganesh

last
Re: The DHTML Calendar
2008/02/15 16:17
Viewed 5502 times
Replies: 0/0

In my firefox error console i get the foll errors

Error: record has no properties
Source File: file:///C:/Documents%20and%20Settings/Admin/Application%20Data/Mozilla/Firefox/Profiles/x1pbncjg.default/extensions/%7B3112ca9c-de6d-4884-a869-9855de68056c%7D/lib/toolbar.js
Line: 443

Error: weekend has no properties
Source File: file:///C:/Documents%20and%20Settings/Admin/Desktop/pop%20up%20calendar/ganesh/onlyneeded/calendar.js
Line: 1534

The calendar pops up (for eg. when i use calendar-fr), but i cant see the dates.
if i use calendar-al, then the calendar does not come up.

last
Re: The DHTML Calendar
2008/02/18 12:29
Viewed 5516 times
Replies: 0/0

Hi
i experienced the same behaviour here. In my installation, all number values (days, week numbers, time) showed "NaN" and the weekdays were "undefined", everything else showed up as intended.

adding the line "Calendar._FD = 0;" (taken from the english language file) into the other language files fixed my problems. I checked the german and dutch language files as i'll only need those, maybe this fix works for the other languages as well.
greez

last
calendar not updating input
2008/07/21 03:46
Viewed 276 times
Replies: 0/0

Hi ,

How does one make a new thread ?

I have two problems : my pop-up calendar is partially hidded by the elements in my html . I only see half of it .
The other problem is it doesn't update the input field when i select a date .

I had everything working before when i copied the html from the demo page here on this site . But now i switched the javascript for this to a page we have in production and it won't work . I have followed the quick start guide and it is easy so i don't see what the problem is . I am thinking maybe the css in the calendar folders are conflicting with the css in our page . Where is the actual html for the calendar so i can change the css for it ?

last
Google