-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.js
171 lines (168 loc) · 5.11 KB
/
form.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// Formulario
//--
function formInit(){
if($('#nperfil').length){
$('.input-group input').keyup(function(){
var label=$(this).parent('.input-group').find('label');
if($(this).val()){
label.hide();
}else{
label.show();
}
});
$('.chkNo').hide();
$('.chkSi').hide();
$('input[name="typeNY"]').change(function(event){
if($(this).val()==1){
$('.chkSi').show();
$('.chkSi select').prop('disabled',false);
$('.chkNo').hide();
$('.chkNo select').prop('disabled',true);
}else{
$('.chkNo').show();
$('.chkNo select').prop('disabled',false);
$('.chkSi').hide();
$('.chkSi select').prop('disabled',true);
}
$('select').material_select();
});
$('select[name="p1"]').change(function(event){
var val=$(this).val();
console.log($('select[name="p6"] option').eq(0));
$('select[name="p6"]').material_select('destroy');
if( val==1){
$('select[name="p6"] option').eq(0).text('¿Cuál es tu trabajo u ocupación?');
}else{
$('select[name="p6"] option').eq(0).text('¿Cuál fue tu ultimo trabajo u ocupación?');
}
$('select[name="p6"]').material_select();
});
$('.comunas').hide();
$('#region').change(function(event){
console.log($(this).val())
var val=$(this).val();
$('.comunas select').material_select('destroy');
if(val==13){
$('.comunas').show();
$('.comunas select').prop('disabled',false);
}else{
$('.comunas').hide();
$('.comunas select').prop('disabled',true);
}
$('.comunas select').material_select();
});
//--Initialization
$('.tooltipped').tooltip({delay: 50});
$('select').material_select();
$('.datepicker').pickadate({
firstDay: true,
selectMonths: true,
selectYears: 60,
min: new Date(1900,1,1),
max: true,
monthsFull: ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'],
monthsShort: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'],
weekdaysFull: ['Domingo', 'Lunes', 'Martes', 'Miercoles', 'Jueves', 'Viernes', 'Sabado'],
weekdaysShort: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],
today: 'Hoy',
clear: 'Limpiar',
close: 'Cerrar',
labelMonthNext: 'Mes Siguiente',
labelMonthPrev: 'Mes Anterior',
labelMonthSelect: 'Seleccione Mes',
labelYearSelect: 'Seleccione Año',
formatSubmit: 'mm/dd/yyyy'
});
$('[data-slide]').click(function(event){
event.preventDefault;
var slide=$(this).data('slide');
$('.carousel').carousel('set', slide-1);
return false;
});
$('#btn-modifica').click(function(event){
event.preventDefault;
var form=$(this).parents('form');
form.find('input').prop( "disabled", false );
form.find('input').first().focus();
return false;
});
$("input#rut").rut({
formatOn: 'keyup',
minimumLength: 8,
validateOn: 'change'
});
$("input#rut").rut().on('rutValido', function(e) {
$(this).removeClass('valid');
$(this).removeClass('invalid');
$(this).addClass('valid');
});
$("input#rut").rut().on('rutInvalido', function(e) {
$(this).removeClass('valid');
$(this).removeClass('invalid');
$(this).addClass('invalid');
});
//FORM
$('#nperfil').ajaxForm({
type: 'post',
beforeSubmit:function (formData, jqForm, options){//Validador
var $input='';
var $return=true;
var $extras='';
for (var i=0; i < formData.length; i++) {
$input=$('[name="'+formData[i].name+'"]');//transformar a Jquery
//console.log($input);
if($input.attr("required")){
//console.log($input);
//console.log('val:'+$input.val());
$input.removeClass('invalid');//quitar error
if (!$input.val()) {
$input.addClass('invalid');//agregar error
$return=false;
}else if($input.attr('type')=='email'){
if(!isEmail($input.val())){
$extras+=', Ingrese Email Valido';
$input.addClass('invalid');
$return=false;
}
}else if($input.attr('name')=='password'){//comparar contraseñas
if($input.val()!==$('input[name="confirmapassword"]').val()){
$input.addClass('invalid');
$extras+=', Contraseña no corresponde';
$('input[name="confirmapassword"]').addClass('invalid');
$return=false;
}
}
}
}
if(!$return){
Materialize.toast('Favor ingresar los datos correspondientes'+$extras);
$('ul.tabs').tabs('select_tab', 'datos');
}
return $return;
},
success:function(responseText, statusText, xhr, $form) {
console.log(responseText);
if(responseText=='Exito'){
$('.tabs.special').hide();
$('#nperfil').hide();
$('.msj-final').show();
}else{
if(responseText==0){
responseText='Ajax Error';
}
Materialize.toast(responseText, 4000);
}
}
});
//--
$('.custom-radio input:radio').change(function(){
var parent=$(this).parents('.custom-radio');
parent.find('label.active').removeClass('active');
$(this).parent('label').addClass('active');
});
}
}
function isEmail(email) {
var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
return regex.test(email);
}