There are some fantastic parts of the model driven app world that are underused and I’m not really sure why? Maybe the fact they require coders to write them but who really knows?

Over the course of a few blog posts, I’m going to show you some of my favourite things that people don’t use enough of and they are, in part, a follow on from my previous series about required fields.

Today we are going to be talking about setNotification.

formContext.getControl(arg).setNotification(message,uniqueId);

A simple line of code with so much power

If you know what setNotification is and you’re screaming addNotification to me – I know, that’s going to be the next post but I wanted to start simply!

Using the power of javascript, we can do pretty much anything we want to (that is supported…) and if a certain scenario should come around, we can prevent the user from saving the form and alert them that they may need to make some changes. Let’s imagine a simple hypothetical scenario – you don’t want to let your users have a number in the first name or last name fields of a contact and if they do that, you want to prevent them from saving.

I’ve written this piece of javascript – simple checking the value of a field and showing the error if required.

"use strict";

(function (globals) {

    globals.updateName = function(executionContext)
    {
        var formContext = executionContext.getFormContext();
        var firstNameAttr = formContext.getAttribute("firstname")
        var lastNameAttr = formContext.getAttribute("lastname");

        if (containsNumber(firstNameAttr.getValue())) {
            showError(firstNameAttr, "First name cannot contain a number")
        }

        if (containsNumber(lastNameAttr.getValue())) {
            showError(lastNameAttr, "Last name cannot contain a number")
        }

    }

    var containsNumber = function(value)
    {
        return /\d/.test(value); 
    }
    
    var showError = function (attr, message) {

        attr.controls.forEach(function (control) {
            control.setNotification(message, attr.getName());
        });
    };
}(this));

From there, I simply apply the event handlers to the form (legacy UI at the time of writing!)

Adding event handler onChange

Hey presto, it’s done so let’s give it a whirl.

Saving prevented

Remember, this is only only client side meaning any other integrations or update paths such as Power Automate will not have any of this enforced – this will only trigger for a human using the form so you can use it to your advantage.

So let’s fix it and remove the number.

It doesn’t have a number

We forgot one thing – we never told the system to remove the error, so time to go back and update the code a little.

"use strict";

(function (globals) {

    globals.updateName = function(executionContext)
    {
        var formContext = executionContext.getFormContext();
        var firstNameAttr = formContext.getAttribute("firstname")
        var lastNameAttr = formContext.getAttribute("lastname");

        if (containsNumber(firstNameAttr.getValue())) {
            showError(firstNameAttr, "First name cannot contain a number");
        } else {
            clearError(firstNameAttr);
        }

        if (containsNumber(lastNameAttr.getValue())) {
            showError(lastNameAttr, "Last name cannot contain a number");
        } else {
            clearError(lastNameAttr);
        }
    }

    var containsNumber = function(value)
    {
        return /\d/.test(value); 
    }
    
    var showError = function (attr, message) {
        attr.controls.forEach(function (control) {
            control.setNotification(message, attr.getName());
        });
    };

    var clearError = function(attr)
    {
        attr.controls.forEach(function (control) {
            control.clearNotification(attr.getName());
        });
    }
}(this));

Success!

Much better response

There are a number of other Javascript helpers you can use on the user interface, this is just the start so hopefully you join me when we go through another!


0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *