web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Microsoft Dynamics CRM (Archived)

empty field that empty another fields-JavaScript

(0) ShareShare
ReportReport
Posted on by

Hey I'm using the following script but its not working, I want to empty the region and city fields if the user didn't choose a country

 

function emptycountry()
{

var country=Xrm.Page.getAttribute("new_country");
var region=Xrm.Page.getAttribute("new_region");
var city=Xrm.Page.getAttribute("new_city");

if (Xrm.Page.getAttribute("new_country").getValue() = null)
{
Xrm.Page.getAttribute("new_region").setValue(null);
Xrm.Page.getAttribute("new_city").setValue(null);
}
alert(country);


else (Xrm.Page.getAttribute("new_country").getValue() != null)
{

Xrm.Page.getAttribute("new_region").setValue();
Xrm.Page.getAttribute("new_city").setValue();

}
}

*This post is locked for comments

I have the same question (0)
  • Suggested answer
    Community Member Profile Picture
    on at
    RE: empty field that empty another fields-JavaScript
    function emptycountry()
    {
    var country=Xrm.Page.getAttribute("new_country").getValue();
    var region=Xrm.Page.getAttribute("new_region");
    var city=Xrm.Page.getAttribute("new_city");
    if (country.getValue() == null) 
    {
    Xrm.Page.getAttribute("new_region").setValue();
    Xrm.Page.getAttribute("new_city").setValue();
    }
    }
  • Community Member Profile Picture
    on at
    RE: empty field that empty another fields-JavaScript

    its not working

  • Community Member Profile Picture
    on at
    RE: empty field that empty another fields-JavaScript

    What is the error. Share your whole Javascript library. Issue in the library.

  • Suggested answer
    Nithya Gopinath Profile Picture
    17,078 on at
    RE: empty field that empty another fields-JavaScript

    Hi,

    Try the code below. Replace null with "". Register this library on save of the form.

    function emptycountry()
    {
    var country=Xrm.Page.getAttribute("new_country").getValue();
    if (country == "") 
      {
        Xrm.Page.getAttribute("new_region").setValue("");
        Xrm.Page.getAttribute("new_city").setValue("");
      }
    }

    Hope this helps.

  • Verified answer
    Community Member Profile Picture
    on at
    RE: empty field that empty another fields-JavaScript
    function emptycountry()
    
    {
    
    var country=Xrm.Page.getAttribute("new_country").getValue();
    
    var region=Xrm.Page.getAttribute("new_region");
    
    var city=Xrm.Page.getAttribute("new_city");
    
    if (country.getValue() == null || country.getValue() == "")
    
    {
    
    Xrm.Page.getAttribute("new_region").setValue();
    
    Xrm.Page.getAttribute("new_city").setValue();
    
    }
    
    }


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

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Pallavi Phade – Community Spotlight

We are honored to recognize Pallavi Phade as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics CRM (Archived)

#1
Community Member Profile Picture

Community Member 2

#1
UllrSki Profile Picture

UllrSki 2

#3
SC-08081331-0 Profile Picture

SC-08081331-0 1

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans