prueb añadiendo esto
Código Javascript
:
Ver original<script language="JavaScript">
function comprobar()
{
if novacio()==true;
{
document.frm.submit();
}
else
{
return false;
}
}
function noVacio()
{
var i;
var n = parseInt(document.frm.cantidad.value);
var bError = false;
for (i = 0; i < n; i++)
{
bError = bError || (eval("document.frm.elemento" + i + ".value == ''"));
if (bError)
{
alert("Debe de introducir el asunto.");
eval("document.frm.elemento" + i + ".focus()");
return false;
break;
}
return true;
break;
}
}
</script>