BookingDate Property



 
The BookingDate property contains the booking date.


Syntax

    [long=] Booking.BookingDate
    
Possible Values
    Long value that retrieves the date.

    The property is read only.
Remarks
    Dates contain the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time (UTC).
Examples
    The following example displays the booking date of the first account's first booking.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    bookings = SiteCafe.Server.Bookings.GetBookings(1, 0, 0, 1, 10);
    alert(bookings.Item(1).BookingDate);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top