0 votes

Our.Umbraco.Forms.Intl-Tel-Input

Add the Intl-Tel-Input text field to your Umbraco Forms

Getting started

This package is supported on Umbraco 9.5.0+ and Umbraco Forms 9.4.1+.

Installation

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

Getting Started

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.

  • Validation message
  • Placeholder
  • Initial country
  • Enable / Disable auto country detection
  • Restrict drop down list options to certain countries
  • Specify which countries should be boosted and appear at the top of the drop down list

Contribution guidelines

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.

License

Copyright © 2022 UmbHost Limited.

Licensed under the MIT License.

Screenshots

NuGet install instructions for Umbraco 9+

dotnet add package Our.Umbraco.Forms.Intl_Tel_Input

Package owner

Aaron

Aaron

Aaron has 405 karma points

Package Compatibility

This package is compatible with the following versions as reported by community members who have downloaded this package:
Untested or doesn't work on Umbraco Cloud
Version 8.18.x (untested)

You must login before you can report on package compatibility.

Previously reported to work on versions:

Package Information

  • Package owner: Aaron
  • Created: 12/05/2022
  • Current version 2.0.0
  • License MIT
  • Downloads on Our: 0
  • Downloads on NuGet: 4.6K
  • Total downloads : 4.6K

External resources