2

为了对门户的最后一页进行评估,使用提交按钮,Microsoft 为提交按钮应触发的函数“webFormClientValidate”提供了扩展: https ://docs.microsoft.com/en-us/dynamics365/客户参与/门户网站/add-custom-javascript

我将此代码放在门户的最后一步中:

console.log("alive");

if (window.jQuery) {
console.log("1");

    (function ($) {
        console.log("2");
        if (typeof (webFormClientValidate) != 'undefined') {
            console.log("3");
            var originalValidationFunction = webFormClientValidate;
            if (originalValidationFunction && typeof (originalValidationFunction) == "function") 
            {
                console.log("4");
                webFormClientValidate = function() 
                {
                    console.log("5");
                    originalValidationFunction.apply(this, arguments);
                    console.log("6");
                    // do your custom validation here

                    if (...) 
                    {
                        console.log("7 false");
                        return false;
                    }
                    // return false; 
                    // to prevent the form submit you need to return false
                    // end custom validation.

                    return true;
                };
            }
        }
    }(window.jQuery));
}

在页面加载时,日志写出:alive 1 2 3 4

按下提交按钮应该会触发“webFormClientValidate”功能,但什么也没有发生。“5”未写入日志。有谁知道为什么?

更新:从调试来看,页面似乎根本无法识别“webFormClientValidate”。然而,通过元素搜索,这个人出现了:

function webFormClientValidate() {
                            // Custom client side validation. Method is 
called by the next/submit button's onclick event.
                            // Must return true or false. Returning false 
will prevent the form from submitting.
                            return true;
                        }

我的研究表明其他人只是粘贴相同的代码。女巫告诉我它应该以某种方式工作:http: //threads290.rssing.com/chan-5815789/all_p2645.html https://rajeevpentyala.com/2016/09/12/useful-jscript-syntaxes-adx-portal/ http://livingindynamics365.blogspot.com/2018/02/validating-user-input-in-crm-portals.html

4

1 回答 1

4

如果您使用的是实体表单,请entityFormClientValidate使用webFormClientValidate

于 2018-12-26T16:43:52.333 回答