function RecoveryUserView(options){var self=this; self.userServiceFacade=options.userServiceFacade; self.inet=options.inet; self.i18n=options.i18n; self.messageHandler=options.messageHandler; self.idRecaptcha=null; self._init(); }RecoveryUserView.prototype._init=function(){var self=this; self._loadStep("recoveryUserStep",{i18n:self.i18n}); $(document).off("submit","#recoveryUserForm").on("submit","#recoveryUserForm",function(event){event.preventDefault(); self._submitForm(); }); $(document).off("submit","#formRestoreUserFourthStep").on("submit","#formRestoreUserFourthStep",function(event){event.preventDefault(); self._submitFormFinalStep(); }); self.inet.getCountries(); $("#recoveryUserCountrySelect").selectpicker({width:"300px",height:"35px",dropupAuto:false,size:7}); $("body").loader("show"); self.loadCaptcha(); }; RecoveryUserView.prototype._loadStep=function(action,params,module){var self=this; captcha.hide(); if(!module&&module!=""){module="recoveryUser"; }self.inet.loadStep(action,params,module); }; RecoveryUserView.prototype.loadCaptcha=function(reset){var self=this; var countryCode={countryCode:inet.countryCode}; self.userServiceFacade.checkCaptcha(countryCode,self._onSuccessCheckCaptcha,self._onErrorCheckCaptcha,self); }; RecoveryUserView.prototype._onSuccessCheckCaptcha=function(data){var self=this; captcha.render(data); }; RecoveryUserView.prototype._onErrorCheckCaptcha=function(response,textStatus,errorThrown){var self=this; $("body").loader("hide"); self.messageHandler.showMessage(self.messageHandler.MESSAGE_TYPE_ERROR,self.i18n.msg("error.internal"),"messageArea"); }; RecoveryUserView.prototype._submitForm=function(){var self=this; var empId=$.trim($("#inputUserIdRecoveryUser").val()); var country=$("#recoveryUserCountrySelect").val(); var countryRequired=true; var captchaToken=""; var hasEmptyFields=false; var empIdComplete=""; if(empId!=""){self._removeValidationWarning("inputUserIdRecoveryUser",hasEmptyFields); }else{self._addValidationWarning("inputUserIdRecoveryUser"); hasEmptyFields=true; }if(empId!=""){countryRequired=true; mailRequired=false; empIdComplete="E"+country+empId; }else{mailRequired=true; }if(countryRequired&&(null==country||country=="-1")){hasEmptyFields=true; self._addValidationWarning("recoveryUserCountryDiv"); }else{self._removeValidationWarning("recoveryUserCountryDiv",hasEmptyFields); }var data=captcha.val(); if(captcha.isRequired()&&$.isEmptyObject(data)){hasEmptyFields=true; self._addValidationCaptchaWarning(); }else{self._removeValidationCaptchaWarning(hasEmptyFields); }if(hasEmptyFields==false){$("body").loader("show"); if($.isNumeric(empId)){var limit=empId.length<=7?7:9; while(empId.length