|
@ -10,15 +10,16 @@ $(document).ready(function(){ |
|
|
$('.radiogroup-status').remove(); |
|
|
$('.radiogroup-status').remove(); |
|
|
flag_create = true |
|
|
flag_create = true |
|
|
} |
|
|
} |
|
|
var active = function(str) { |
|
|
var active = function(str, atualizar=true) { |
|
|
if (str == 'nome') { |
|
|
if (str == 'nome') { |
|
|
$('#id_nome, #id_q').val(''); |
|
|
if (atualizar) |
|
|
|
|
|
$('#id_nome, #id_q, #id_cargo').val(''); |
|
|
$('.div_nome_cargo').removeClass('hidden'); |
|
|
$('.div_nome_cargo').removeClass('hidden'); |
|
|
$("#div_id_autor_related .controls").html(''); |
|
|
$("#div_id_autor_related .controls").html(''); |
|
|
$("[data-application='AutorSearch'], .radiogroup-autor-related").addClass('hidden'); |
|
|
$("[data-application='AutorSearch'], .radiogroup-autor-related").addClass('hidden'); |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
$('#id_nome').val(''); |
|
|
$('#id_nome, #id_cargo').val(''); |
|
|
$('.div_nome_cargo').addClass('hidden'); |
|
|
$('.div_nome_cargo').addClass('hidden'); |
|
|
$("#div_id_autor_related .alert").remove(); |
|
|
$("#div_id_autor_related .alert").remove(); |
|
|
$("[data-application='AutorSearch'], .radiogroup-autor-related").removeClass('hidden'); |
|
|
$("[data-application='AutorSearch'], .radiogroup-autor-related").removeClass('hidden'); |
|
@ -64,7 +65,7 @@ $(document).ready(function(){ |
|
|
$('#id_nome, #id_q').val(''); |
|
|
$('#id_nome, #id_q').val(''); |
|
|
} |
|
|
} |
|
|
}).fail(function(data) { |
|
|
}).fail(function(data) { |
|
|
active('nome'); |
|
|
active('nome', atualizar); |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|