Commit 8c0d2bfd by ID

Fix: Mantenimiento PLANA - Combo select

parent bccb48ca
......@@ -1119,11 +1119,12 @@
}
function cargarArea(){
var nombre = $('#cmbArea').attr('id');
var accion = "limpiar();";
$.ajax({
type:'POST',
url:'../ServletArea?Accion=cargarArea',
data: 'accion='+accion,
data: 'accion=' + accion +'&nombre='+nombre,
beforeSend: function() {
cargando();
},success:function(resultado){
......
......@@ -617,11 +617,12 @@
}
function cargarArea(){
var nombre = $('#cmbArea').attr('id');
var accion = "cargarPlana(); limpiar();";
$.ajax({
type:'POST',
url:'../ServletArea?Accion=cargarArea',
data: 'accion='+accion,
data: 'accion=' + accion +'&nombre='+nombre,
beforeSend: function() {
cargando();
},success:function(resultado){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment