Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : KMADAoqgF7SOTCiMzV9nZs
Microsoft Dynamics CRM (Archived)

JavaScript Web Resource on Check Box field type

Like (0) ShareShare
ReportReport
Posted on 23 Aug 2018 20:22:13 by

I have a Check Box field on a Quick Create Lead form and I want to perform some action when ever this field is selected(Checked) on OnChange Event. I have created a JavaScript Web Resource and it is performing the action whenever the check box field is selected(Checked), but the problem here is that it is performing that action even when the check box field is Unchecked. 

How to prevent that action while user is trying to Uncheck the check box field?   

*This post is locked for comments

  • Community Member Profile Picture
    on 24 Aug 2018 at 22:59:10
    RE: JavaScript Web Resource on Check Box field type

    I applied the same function and it worked for me, thanks Radu

  • Verified answer
    Radu Chiribelea Profile Picture
    6,667 on 23 Aug 2018 at 20:37:21
    RE: JavaScript Web Resource on Check Box field type

    Hi Sunny,

    This is expected behavior. The event handler is triggered on the on change event. Both checking and unchecking the box are considered on change events.

    To prevent the logic from being executed when the box is unchecked, you can add some extra logic inside the onchage method and verify the value of the field. If it is null simply return.

    Something llike

    function OnChangehandler(){

    var field = Xrm.Page.getAttribute("<your_checkboxfield">)

    if(field==false){

    return}

    else{

    //your logic here

    }

    }

    Hope this helps,

    Radu

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

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 293,399 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,548 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans
Loading complete