Skip to main content

Notifications

Customer experience | Sales, Customer Insights,...
Answered

Validate the Website Url field using javascript in dynamics crm

(0) ShareShare
ReportReport
Posted on by 45

Hello 

Validate the Website Url field using  javascript in dynamics crm. 


How can i implement this one validation

Can u please help me. 

Thank you

  • Sri College Profile Picture
    Sri College 45 on at
    RE: Validate the Website Url field using javascript in dynamics crm

    Thank you Mehran.

  • Suggested answer
    MehranBre Profile Picture
    MehranBre 730 on at
    RE: Validate the Website Url field using javascript in dynamics crm

    ok, use this:

    function validURL(str) {
    
        var pattern = new RegExp(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\ ~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\ .~#?&\/\/=]*);
        return !!pattern.test(str);
    }

    Regards.

  • Sri College Profile Picture
    Sri College 45 on at
    RE: Validate the Website Url field using javascript in dynamics crm

    Thank you Mehran.

    Very nice update. It is very useful to me.

    Your code output displays like this: https://test.in

    I need like this format :https://www.test.in

    Can u pls help me

  • Verified answer
    MehranBre Profile Picture
    MehranBre 730 on at
    RE: Validate the Website Url field using javascript in dynamics crm

    Hi,

    add this function to OnChange Event of field:

    function OnChangeWebSite() {
    
        var webSite = Xrm.Page.getAttribute("webSite");
    
        if (webSite.getValue() != null) {
    
            if (!validURL(webSite.getValue())) {
    
                alert("Please Insert a Valid URL!");
            }
        }
    }
    
    function validURL(str) {
        var pattern = new RegExp('^(https?:\\/\\/)?'   // protocol
            '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.) [a-z]{2,}|'   // domain name
            '((\\d{1,3}\\.){3}\\d{1,3}))'   // OR ip (v4) address
            '(\\:\\d )?(\\/[-a-z\\d%_.~ ]*)*'   // port and path
            '(\\?[;&a-z\\d%_.~ =-]*)?'   // query string
            '(\\#[-a-z\\d_]*)?$', 'i'); // fragment locator
        return !!pattern.test(str);
    }

    Best Regards.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

News and Announcements

Announcing Category Subscriptions!

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,359 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,370 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans