cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
sdnd2000
Helper IV
Helper IV

Conditional Required field by JS

Hi, I am trying to make some custom fields mandatory through JS, there should be a red asterisk sign in the label, however, it takes effective for text field, for lookup and optionset field, the sign didn't get added. I attached the JS code, and results, please advise.

 

//Make mandatory field
function MakeRequired (fieldName) {
    try {
        debugger;
        if ($("#" + fieldName) != undefined) {
            $("#" + fieldName).prop('required', true);
            $("#" + fieldName).closest(".control").prev().addClass("required");
 
            // Create new validator
            var Requiredvalidator = document.createElement('span');
            Requiredvalidator.style.display = "none";
            Requiredvalidator.id = fieldName + "Validator";
            Requiredvalidator.controltovalidate = fieldName;
            //Requiredvalidator.errormessage =  $("#" + fieldName + "_label").html() + " is a required field.";
            Requiredvalidator.errormessage="<a href='#'"+fieldName+"_label"+">"+$("#" + fieldName + "_label").html() +" is required.</a>"
            Requiredvalidator.initialvalue = "";
            Requiredvalidator.evaluationfunction = function () {
                var value = $("#" + fieldName).val();
                if (value == null || value == "") {
                    return false;
                } else {
                    return true;
                }
            };
 
            // Add the new validator to the page validators array:
            Page_Validators.push(Requiredvalidator);
        }
    }
    catch (error) {
        errorHandler(error);
    }
}

 

 

 

sdnd2000_0-1711577716430.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
Inogic
Solution Specialist
Solution Specialist

Hi @sdnd2000 ,

You need to update the following code to focus on the lookup field when clicking on the error message:

 

RequiredValidator.errormessage = "<a href='#' onclick='$(\"#" + fieldName + "\").parent().parent().find(\".lookup\").css({\"box-shadow\": \"rgba(3, 102, 214, 0.3) 0px 0.1px 0.3px 1px, rgba(3, 103, 214, 0.3) 0px -1px 1px, rgba(3, 102, 214, 0.3) 0px -1px 0px, rgba(3, 102, 214, 0.3) 0px -1px 0px, rgba(3, 102, 214, 0.3) 3px 3px 7px\"}); return false;'>" + $("#" + fieldName + "_label").html() + " is required.</a>";

 

Output:

Inogic_0-1712571531345.png

 

Thanks!

Inogic Professional Service Division

An expert technical extension for your techno-functional business needs

Power Platform/Dynamics 365 CRM

Drop an email at crm@inogic.com

Service:  http://www.inogic.com/services/ 

Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/

View solution in original post

6 REPLIES 6
Inogic
Solution Specialist
Solution Specialist

Hi @sdnd2000 

Based on our understanding, you're trying to make some custom fields mandatory through JavaScript. To achieve this, follow the steps below

 

  1. Go to the basic Form.
  2. Select your form.
  3. Select additional settings.
  4. In the custom JavaScript section, paste the code mentioned below:

Inogic_0-1711610036902.png

 

if (window.jQuery) {

 

(function ($) {

 

$(document).ready(function () {

 

$("#iric_endtime, #iric_starttime, #iric_account").addClass("required");

 



$(".required").each(function() {

 

var labelText = $(this).prev().not('input').not('br').not('select').text();

 

$(this).prev().not('input').not('br').not('select').html(labelText +

'<span style="color: red;"> *</span>');

 

});


if (typeof (Page_Validators) ==

'undefined') return;

// Create new validator for end time

 

var endtimeValidator = document.createElement('span');

 

endtimeValidator.style.display = "none";

 

endtimeValidator.id = "endtimeValidator";

 

endtimeValidator.controltovalidate = "iric_endtime";

// end time field logical name

 

endtimeValidator.errormessage = "<a href='#iric_endtime_label' referencecontrolid='iric_endtime' onclick='javascript&colon;scrollToAndFocus(\"iric_endtime_label\",\"iric_endtime\");return false;'>End time is a required field.</a>";

 

endtimeValidator.validationGroup = "";

// Set this if you have set ValidationGroup on the form

 

endtimeValidator.initialvalue = "";

 

endtimeValidator.evaluationfunction = function () {

 

var endtimeValue = $("#iric_endtime").val();

// end time field logical name

 

if (endtimeValue ==

"") {

 

return false;

// return false to trigger validation failure

 

}

 

return true;

 

};

// Create new validator for lookup filed

 

var lookupValidator = document.createElement('span');

 

lookupValidator.style.display = "none";

 

lookupValidator.id = "lookupValidator";

 

lookupValidator.controltovalidate = "iric_account";

// lookup field logical name

 

lookupValidator.errormessage = "<a href='#iric_account_label' referencecontrolid='iric_account' onclick='javascript&colon;scrollToAndFocus(\"iric_account_label\",\"iric_account\");return false;'>Account is required field.</a>";

 

lookupValidator.validationGroup = "";

// Set this if you have set ValidationGroup on the form

 

lookupValidator.initialvalue = "";

 

lookupValidator.evaluationfunction = function () {

 

var lookupValue = $("#iric_account").val();

// Lookup field logical name

 

if (lookupValue ==

"") {

 

return false;

 

}

 

return true;

 

};

 



// Add the end time validator to the page validators array

 

Page_Validators.push(endtimeValidator);

 

Page_Validators.push(lookupValidator);

 

});

 

}(window.jQuery));

 

}

To reflect the change save and sync

Thanks!

Inogic Professional Service Division

An expert technical extension for your techno-functional business needs

Power Platform/Dynamics 365 CRM

Drop an email at crm@inogic.com

Service:  http://www.inogic.com/services/ 

Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/

GWham1
Resolver II
Resolver II

You could try something like the below:

/***********************************
** SINGLE
***********************************/

$(document).ready(function () {
    addValidator("customerid", "Customer")
});

    function addValidator(fieldName, fieldLabel) {


        if (typeof (Page_Validators) == 'undefined') return;
        // Create new validator
        $("#" + fieldName + "_label").parent().addClass("required");

        var newValidator = document.createElement('span');
        newValidator.style.display = "none";
        newValidator.id = "RequiredFieldValidator" + fieldName;
        newValidator.controltovalidate = "";
        newValidator.errormessage = "<a href='#" + fieldName + "_label'>" + fieldLabel + " is a mandatory field.</a>";
        newValidator.validationGroup = "";
        newValidator.initialvalue = "";
        newValidator.evaluationfunction = function () {
            var value = $("#" + fieldName).val();
            if (value == null || value == "") {
                return false;
            } else {
                return true;
            }
        };

        // Add the new validator to the page validators array:
        Page_Validators.push(newValidator);

        // Wire-up the click event handler of the validation summary link
        $("a[href='#" + fieldName + "_label']").on("click", function () { scrollToAndFocus(fieldName + '_label', fieldName); });
    }

 

/***********************************
** TWO OPTION
***********************************/

$(document).ready(function () {
    twoOptionValidator ("gw_confirmation", "Confirmation");
});

function twoOptionValidator(fieldName, fieldLabel) {

    if (typeof (Page_Validators) == 'undefined') return;
    // Create new validator

    var newValidator = document.createElement('span');
    newValidator.style.display = "none";
    newValidator.id = "DateFormatValidator" + fieldName;
    newValidator.controltovalidate = "";
    newValidator.errormessage = "<a href='#" + fieldName + "_label'>" + fieldLabel + " must be agreed.</a>";
    newValidator.validationGroup = "";
    newValidator.initialvalue = "";
    newValidator.evaluationfunction = function () {

        if ($("#" + fieldName + "_1").is(':checked')) {
            return true;
        }else{
            return false;
        }
    };
    Page_Validators.push(newValidator);
    $("a[href='#" + fieldName + "_label']").on("click", function () { scrollToAndFocus(fieldName + '_label', fieldName); });
}

 

@GWham1  Thanks, actually, I am looking to add the onclick js function to the error so that user is able to click the error message and redirect to the field with error. I am struggling with the below code, and always get error, please advise.

Requiredvalidator.errormessage="<a href='#'"+fieldName+"_label"+"referencecontrolid="+fieldName+"onclick='javascript&colon;scrollToAndFocus(\+fieldName+"_label"\,\+fieldName+"_label" \")"+";"+return false";"+">"+$("#" + fieldName + "_label").html() +" is required.</a>"
Inogic
Solution Specialist
Solution Specialist

Hi @sdnd2000 

Based on our understanding, it appears that there are some syntax errors in your JavaScript code:



 RequiredValidator.errormessage = "<a href='#" + fieldName + "_label' referencecontrolid='" + fieldName + "' onclick='javascript&colon;scrollToAndFocus(\"" + fieldName + "_label\",\"" + fieldName + "\");return false;'>" + $("#" + fieldName + "_label").html() + " is required.</a>";

 

 

if (window.jQuery) {

 

(function ($) {

 

$(document).ready(function () {

 

if (typeof (Page_Validators) ==

'undefined') return;

 

MakeRequired("iric_account");

//change the parameter name with your logical name

 

function MakeRequired(fieldName) {

 

try {

 

if ($("#" + fieldName) !=

undefined) {

 

$("#" + fieldName).prop('required',

true);

 

$("#" + fieldName).closest(".control").prev().addClass("required");

 

// Create new validator

 

var RequiredValidator = document.createElement('span');

 

RequiredValidator.style.display = "none";

 

RequiredValidator.id = fieldName + "Validator";

 

RequiredValidator.controltovalidate = fieldName;

 

RequiredValidator.errormessage = "<a href='#" + fieldName +

"_label' referencecontrolid='" + fieldName +

"' onclick='javascript&colon;scrollToAndFocus(\"" + fieldName +

"_label\",\"" + fieldName +

"\");return false;'>" + $("#" + fieldName +

"_label").html() +

" is required.</a>";

 

RequiredValidator.initialvalue = "";

 

RequiredValidator.evaluationfunction = function () {

 

var value = $("#" + fieldName).val();

 

if (value ==

null || value == "") {

 

return false;

 

} else {

 

return true;

 

}

 

};

 

// Add the new validator to the page validators array

 

Page_Validators.push(RequiredValidator);

 

}

 

} catch (error) {

 

errorHandler(error);

 

}

 

}});

 

}(window.jQuery));

 

}

Thanks!

Inogic Professional Service Division

An expert technical extension for your techno-functional business needs

Power Platform/Dynamics 365 CRM

Drop an email at crm@inogic.com

Service:  http://www.inogic.com/services/ 

Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/



@Inogic Thanks for that. The JS is working, however, it doesn't highlight the field as the below, I do not see any documentation from MS. Any suggestions?

sdnd2000_0-1712341754104.png

 

Inogic
Solution Specialist
Solution Specialist

Hi @sdnd2000 ,

You need to update the following code to focus on the lookup field when clicking on the error message:

 

RequiredValidator.errormessage = "<a href='#' onclick='$(\"#" + fieldName + "\").parent().parent().find(\".lookup\").css({\"box-shadow\": \"rgba(3, 102, 214, 0.3) 0px 0.1px 0.3px 1px, rgba(3, 103, 214, 0.3) 0px -1px 1px, rgba(3, 102, 214, 0.3) 0px -1px 0px, rgba(3, 102, 214, 0.3) 0px -1px 0px, rgba(3, 102, 214, 0.3) 3px 3px 7px\"}); return false;'>" + $("#" + fieldName + "_label").html() + " is required.</a>";

 

Output:

Inogic_0-1712571531345.png

 

Thanks!

Inogic Professional Service Division

An expert technical extension for your techno-functional business needs

Power Platform/Dynamics 365 CRM

Drop an email at crm@inogic.com

Service:  http://www.inogic.com/services/ 

Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/

Helpful resources

Announcements

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!      

Tuesday Tip | How to Report Spam in Our Community

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: How to Report Spam in Our Community We strive to maintain a professional and helpful community, and part of that effort involves keeping our platform free of spam. If you encounter a post that you believe is spam, please follow these steps to report it: Locate the Post: Find the post in question within the community.Kebab Menu: Click on the "Kebab" menu | 3 Dots, on the top right of the post.Report Inappropriate Content: Select "Report Inappropriate Content" from the menu.Submit Report: Fill out any necessary details on the form and submit your report.   Our community team will review the report and take appropriate action to ensure our community remains a valuable resource for everyone.   Thank you for helping us keep the community clean and useful!

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp    

Welcome! Congratulations on joining the Power Pages community!

Welcome to the Power Pages Community!   You're now a part of a vibrant group of peers and industry experts who are here to network, share knowledge, and even have a little fun.     Now that you're a member, you can enjoy the following resources:   The Power Pages Community Forums The forums are also a great place to connect with other Power Pages community members. Check the News & Announcements section for community highlights, find out about the latest community news, and learn about the Community Team. Share your feedback, earn custom profile badges, enter challenges to win prizes, and more.   Community Blog Our community members have learned some excellent tips and have keen insights on the future of business analysis. Head on over to the Community Blog to read the latest posts from around the world. Let us know if you'd like to become an author and contribute your own writing — everyone is welcome.   And that’s not all, we have Galleries of additional information such as the Community Connections & How To Videos & Webinars & Video Gallery and more to motivate, educate and inspire you.   Again, welcome to the Power Pages community family, we are so happy you have joined us! Whether you are brand new to the world of data or you are a seasoned veteran - our goal is to shape the community to be your ‘go to’ for support, networking, education, inspiration and encouragement as we enjoy this adventure together! Let us know in the Community Feedback forum if you have any questions or comments about your community experience, but for now – head on over to the forums Get Help with Power Pages and dive right in!   To learn more about the community and your account be sure to visit our Community Support Area. We look forward to seeing you in the Power Pages Community!   The Power Pages Community Team  

Users online (4,924)