Submitted Property



 
The Submitted property contains the time when the job was submitted.


Syntax

    [date=] SiteKiosk.Printer.Printers.Item(index1).Jobs.Item(index2).
            Submitted
    
Possible Values
    Date value that retrieves the time.

    The property is read only.
Remarks Examples
    The following example displays the formatted time when the first available print job of the first available printer was submitted.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    myDTF = SiteKiosk.SiteKioskUI.CreateDateTimeFormatter();
    jobDate = SiteKiosk.Printer.Printers.Item(1).Jobs.Item(1).Submitted;
    alert(myDTF.FormatTime(jobDate));
    </SCRIPT>
    

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

Back to top