Hola a todos, a ver si me pueden ayudar, tengo una lista que viene de una consulta en esa lista que me muestra le agregue 2 checkbox uno de aceptar y otro de rechazar, lo que necesito hacer es recorrer esa lista y ver cual esta checado para que realice un flujo correspondiente.....
hice esta funcion solo para probar pero no me ha quedado
function checkBoxSeleccionado(chkbox)
{
for (var i=0;i < document.forms[0].elements.length;i++)
{
alert("document.forms[0].elements.length : " + document.forms[0].elements.length);
var elemento = document.forms[0].elements
;
if (elemento.type == "checkbox")
{
alert("ESTA CHECADO");
}
}
}
estoy en WorkShop de BEA... mis check box estan asi...
<td class="Dato_entrada" width="9%" align="center">
<netui:checkBox tagId="yes" dataSource="{actionForm.chkACE}" onClick="alert('ACEPTO GESTION')"/></td>
<td class="Dato_entrada" width="9%" align="center">
<netui:checkBox tagId="no" dataSource="{actionForm.chkCAN}" onClick="alert('NO ACEPTO GESTION')" />
</td>
Gracias