Hallo Leute,
wie verwende ich eine onClose funktion
bei einem vorgefertigten Javascript?
Das ist das Objekt und die Dokumentation für das onClose.
Ich kann auch noch mehr Code und Doku durch geben,
wenn es benötigt wird.
Ich danke für alle Antworten.
wie verwende ich eine onClose funktion
bei einem vorgefertigten Javascript?
HTML:
Calendar.setup(
{
inputField : "data", // ID of the input field
ifFormat : "%m %d, %Y, %k, %M", // the date format
button : "von", // ID of the button
showsTime : true //zeigt auch Zeit an
}
);
The onClose event
This event is triggered when the calendar should close. It should hide or destroy the calendar
object—the calendar itself just triggers the event, but it won’t close itself.
A typical implementation of this function is the following:
function onClose(calendar) {
calendar.hide();
// or calendar.destroy();
};
Das ist das Objekt und die Dokumentation für das onClose.
Ich kann auch noch mehr Code und Doku durch geben,
wenn es benötigt wird.
Ich danke für alle Antworten.