Hi, All
I have found that for "mailto:" links better to update the code of the subs in ABShared module:
Else the wrong email cannot be sent on the mobile devices, as no edit possible at a letter template.
NOTE all subs "NavigateToPage...".
I have found that for "mailto:" links better to update the code of the subs in ABShared module:
B4X:
Public Sub NavigateToPageNewTab(ws As WebSocket, PageId As String, TargetUrl As String, OpenInNewTab As Boolean) 'ignore
Dim testTargetUrl As String = TargetUrl
If Not(testTargetUrl.ToLowerCase.EndsWith(".htm") Or testTargetUrl.ToLowerCase.EndsWith(".html") Or testTargetUrl.ToLowerCase.EndsWith("/") Or testTargetUrl.ToLowerCase.StartsWith("mailto:")) Then 'added mailto:
TargetUrl = TargetUrl & "/"
End If
...
Else the wrong email cannot be sent on the mobile devices, as no edit possible at a letter template.
NOTE all subs "NavigateToPage...".
Last edited: