Before moving to Step ST3 i am checking the fields in ST2 is The below code is written in step 2 if (window.jQuery) { (function ($) { if (typeof (webFormClientValidate) != 'undefined') { var originalValidationFunction = webFormClientValidate; if (originalValidationFunction && typeof (originalValidationFunction) == "function") { webFormClientValidate = function() { originalValidationFunction.apply(this, arguments); // do your custom validation here check if data is present in Entity2 by calling webapi // return false; // if no data present return true; //if data present }; } }
↧