Add the Intl-Tel-Input text field to your Umbraco Forms
This package is supported on Umbraco 9.5.0+ and Umbraco Forms 9.4.1+.
Our.Umbraco.Forms.Intl-Tel-Input is available from NuGet or as a manual download directly from GitHub.
dotnet add package Our.Umbraco.Forms.Intl-Tel-Input
If you wish to auto detect the users country, you will need to get an API key from ipinfo.io.
You will need to add the following setting to your appsettings.json
"IntlTelInput": {
"IPinfoKey": "YOUR API KEY"
}
You must add the following if statement to the end of your Umbraco Forms theme Render.cshtml
file:
@if (Model.CurrentPage.JavascriptCommands.Any())
{
<script>
document.addEventListener("DOMContentLoaded", function() {
@foreach (var javascriptCommand in Model.CurrentPage.JavascriptCommands)
{
@Html.Raw(javascriptCommand)
}
});
</script>
}
It should be placed directly after the following lines:
@* Form Scripts *@
@if (Model.RenderScriptFiles)
{
@* Render the scripts.cshtml file to included standard conditionals and validation logic *@
await Html.RenderPartialAsync(formScriptView);
}
The following settings are available on the field type, and are set on each form within the Umbraco Forms Backoffice.
To raise a new bug, create an issue on the GitHub repository. To fix a bug or add new features, fork the repository and send a pull request with your changes. Feel free to add ideas to the repository's issues list if you would to discuss anything related to the package.
Copyright © 2022 UmbHost Limited.
Licensed under the MIT License.