Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Customer experience | Sales, Customer Insights,...
Suggested answer

JS onLoad form notification help (only show when field contains data)

(0) ShareShare
ReportReport
Posted on by

Hi all,

I'm trying to show a form notification when a specific field on the form contains data.

I'm not good with Javascript, but have pieced together the below:

function ResellerAlert(executionContext) {

    var formContext = executionContext.getFormContext();

    var reseller = formContext.getAttribute("parentaccountid");

    if (reseller != null) {

        formContext.ui.setFormNotification("This account has a Reseller listed, please check before quoting.""WARNING");

    }

}


The problem I have is that the notification shows all the time. Even if the 'reseller' field is empty


The 'reseller' field is a lookup field to another account.


What am I doing wrong?

  • Suggested answer
    barryjarvis Profile Picture
    on at
    RE: JS onLoad form notification help (only show when field contains data)

    I've discovered what was wrong.

    for anybody searching this in future, i was missing 'getvalue()' from the 'getAttribute()' function.

    new code as below:

    function ResellerAlert(executionContext) {

       var formContext = executionContext.getFormContext();

       var reseller = formContext.getAttribute("parentaccountid").getValue();

       if (reseller != null) {

           formContext.ui.setFormNotification("This account has a Reseller listed, please check before quoting.", "WARNING");

       }

    }

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

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Adis Hodzic – Community Spotlight

We are honored to recognize Adis Hodzic as our May 2025 Community…

Leaderboard > Customer experience | Sales, Customer Insights, CRM

#1
Daivat Vartak (v-9davar) Profile Picture

Daivat Vartak (v-9d... 225 Super User 2025 Season 1

#2
Muhammad Shahzad Shafique Profile Picture

Muhammad Shahzad Sh... 106 Most Valuable Professional

#3
Eugen Podkorytov Profile Picture

Eugen Podkorytov 102

Overall leaderboard

Product updates

Dynamics 365 release plans