Ver Mensaje Individual
  #13 (permalink)  
Antiguo 08/09/2015, 11:02
BlackJccl1
 
Fecha de Ingreso: abril-2015
Mensajes: 304
Antigüedad: 9 años, 7 meses
Puntos: 2
Respuesta: Error al Carga combo

me percate de algo en mi html lo hice asi
Código HTML:
Ver original
  1. <select class="form-control" id="e_servicio_seguimiento">
  2.                 <option value="null">Seleccione Servicio</option>
  3.               </select>
en script asi
Código Javascript:
Ver original
  1. var seleccionado = false;
  2. $("#e_actividad_seguimiento").each(function(){
  3.         if($(this).val()=="null"){
  4.           $(this).attr("selected",true);
  5.           seleccionado=true;
  6.         }
  7.         if(seleccionado==false){
  8.           $("#e_actividad_seguimiento option[value="+ cad[10] +"]").attr("selected",true);
  9.         }
  10.       });
el tema esta que cuando hay un dato que cargar no lo hacer haaa que hago