CheckInButAlreadyCheckedIn
Displayed when Check-In is selected but user is already checked in.
CheckOutButNotCheckedInPopup
Displayed when Check-Out is selected but user is not checked in.
ConfirmTicketPopup
The ConfirmTicketPopup is shown after the autorization. If no license plate has been entered before this pop-up will allow you to do it now. After confirmint the license plate, the pop-up will be displayed again for a final confirmation.
The WaitForPopupToHide must be set to "false" in both ConfirmTicketPopups
Example 1st ConfirmTicketPopup:
Note: This pop-up does not have the receipt buttons but support the CodeInput field. |
<TFT:PopupPanel MxStyle="{PopupStyle}" Name="ConfirmTicketPopup" WaitForPopupToHide="false" Timeout="60" TimeoutEvent="OnConfirmTicketPopupTimeoutAndReject">
<Controls>
<TFT:Label MxStyle="{DebugLabelStyle}" FormattedText="CodeInputPanel"/>
<TFT:Image MxStyle="{RattImageStyle}"/>
<TFT:TextBox MxStyle="{InputTextboxStyle}" Name="CodeInput" MaximumLength="15"/>
<TFT:Image MxStyle="{InputBoxStyle}"/>
<TFT:Label MxStyle="{UserInstructionLabelStyle}" Name="CodeInputLabel" FormattedText="Enter your $Code_Input$"/>
<TFT:Button MxStyle="{AcceptButtonVisualStyle}" Name="CodeDoneButton" Click="OnDoActions">
<TFT:Action Click="OnCodeInputDone"/>
<TFT:Action Click="OnCloseCurrentPopup"/>
<TFT:Action Click="OnPopupPanelOpen" KeyValue="ConfirmTicketPopup2"/>
</TFT:Button>
<TFT:Button MxStyle="{RejectButtonVisualStyle}" Name="RejectButton" FormattedText="CancelText" Click="OnConfirmTicketPopupTimeoutAndReject"/>
<TFT:Button MxStyle="{OnCodeInputClearOrRejectStyle}"/>
<TFT:PreviewPanel MxStyle="{SoftKeyboardPanelStyle}" Name="CodeInputKeyboard" SubForm="SoftCodeKeyboardPanel"/>
<TFT:Label MxStyle="{LargeBottomBannerColorStyle}" FormattedText=""/>
</Controls>
</TFT:PopupPanel>
Example 2nd ConfirmTicketPopup (final confirm popup)
<TFT:PopupPanel MxStyle="{PopupStyle}" Name="ConfirmTicketPopup2" WaitForPopupToHide="false" Timeout="60" TimeoutEvent="OnConfirmTicketPopupTimeout">
<Controls>
<TFT:Label MxStyle="{DebugLabelStyle}" FormattedText="ConfirmTicketPopup2"/>
<TFT:Label MxStyle="{DigitalReceiptTitleLabelStyle}"/>
<TFT:Label MxStyle="{DigitalReceiptTextLabelStyle}"/>
<TFT:Label MxStyle="{ParkingEndsTitleLabelStyle}"/>
<TFT:Label MxStyle="{EndDateSmallLabelStyle}"/>
<TFT:Label MxStyle="{EndTimeSmallLabelStyle}"/>
<TFT:Label MxStyle="{AmountTitleSmallLabelStyle}"/>
<TFT:Label MxStyle="{PaidPlusLeftToPayLabelStyle}" Location="384,292" Size="320,38" Font="Arial, 18pt, style=Bold" Alignment="Far"/>
<TFT:Image MxStyle="{ReceiptInfoBoxStyle}"/>
<TFT:Button MxStyle="{SMSButtonStyle}" KeyValue="TicketForwardingPhoneNumerInputPanel"/>
<TFT:Button MxStyle="{EmailButtonStyle}" KeyValue="TicketForwardingEmailAddressInputPanel"/>
<TFT:Button MxStyle="{NoTicketButtonStyle}" KeyValue='1' Click="OnTicketDecline"/>
</Controls>
</TFT:PopupPanel>