function checkAllMandatoryFields()

in website-creator/js/connectflows.js [882:897]


function checkAllMandatoryFields(){
	if(isBlank(dlgSourceAccessKey) || dlgSourceAccessKey.isEmpty() || 
			isBlank(dlgSourceSecretKey) || dlgSourceSecretKey.isEmpty() || 
			isBlank(dlgSourceInstance) || dlgSourceInstance.isEmpty() ||
			isBlank(dlgSourceRegion) || dlgSourceRegion.isEmpty() ||
			isBlank(dlgSourceBackupDDB) || dlgSourceBackupDDB.isEmpty() ||
			isBlank(dlgSourceARNMapDDB) || dlgSourceARNMapDDB.isEmpty() ||
			isBlank(dlgTargetAccessKey) || dlgTargetAccessKey.isEmpty() || 
			isBlank(dlgTargetSecretKey) || dlgTargetSecretKey.isEmpty() || 
			isBlank(dlgTargetInstance) || dlgTargetInstance.isEmpty() ||
			isBlank(dlgTargetRegion) || dlgTargetRegion.isEmpty()  			
			){
		return false;
	}else
		return true;
}