la información se extrae y crea unos arreglos que son enviados por medio de JSON.
Código:
al recibir los arreglos recorro por medio de un loop los datos y voy creando botones radio dinámicamente.$GS= array( 'checklistId' => $row['checklist_id'], 'header' => 'GS', 'itDesc' => array($arrIdF,$arrDesF) ); $RS= array( 'checklistId' => $row['checklist_id'], 'header' => 'RS', 'itDesc' => array($arrIdF,$arrDesF) ); $details = array ( 'GS' => $GS, 'RS' => $RS ); $output = Zend_Json::encode($details);
Código:
el problema que tengo es que cuando esto se crea hay otros comoboxes que desaparecen esto sucede solo en iE y no en firefox.var parents = JSON.parse(checklist.responseText); var span = document.getElementById("checklists"); rdoy = document.createElement('input'); rdoy.setAttribute('type','radio'); rdoy.setAttribute('id',i); rdoy.setAttribute('name',name); rdoy.setAttribute('value','yes'); var li = document.createElement("li"); li.appendChild(rdoy); list.appendChild(li); span.appendChild(list);
espero que alguien me pueda ayudar.
gracias