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

Notifications

Announcements

No record found.

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
    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

    its not working

  • Community Member Profile Picture
    on at

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

  • Suggested answer
    Nithya Gopinath Profile Picture
    17,078 on at

    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
    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…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics CRM (Archived)

#1
SA-08121319-0 Profile Picture

SA-08121319-0 4

#1
Calum MacFarlane Profile Picture

Calum MacFarlane 4

#3
Alex Fun Wei Jie Profile Picture

Alex Fun Wei Jie 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans