Changeset f490416 in prototipo_portal_2018


Ignore:
Timestamp:
Aug 24, 2015, 3:05:07 PM (9 years ago)
Author:
Pedro Buitrago <pbuitrago@…>
Branches:
master
Children:
af4112a
Parents:
51b96ce
Message:

se agregaron opciones para el manejo de los botones radio que manejan el formato de la firma (pdf,bdoc).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WebContent/index.html

    r51b96ce rf490416  
    205205            e.preventDefault();
    206206            var f = $(this);
    207            
     207            // inicio control de los botones radio en el formulario firmar (pdf,bdoc)-------------------------------------------- 
     208            alert("manejo de JsonPDF");
     209            if(document.SignFormat.optradio[0].checked) // chequea si el botón radio PDF esta seleccionado y entra a la sección en caso contrario va al otro if (botón radio BDOC)
     210                //alert(document.SignFormat.optradio[0].value);
     211            if(document.SignFormat.optradio[1].checked) //chequea si el botón radio BDOC esta seleccionado y entra
     212                //alert(document.SignFormat.optradio[1].value);
     213            //fin de control de los botones radio en el formulario firmar (pdf,bdoc)----------------------------------------------
     214
     215       
    208216            //alert("se presiono firmar")
    209217           
     
    694702                                                        <!-- <form enctype="multipart/form-data" action="https://192.168.12.125:8443/Murachi/murachi/archivos" method="post" id="firmar"> -->
    695703                                                        <!-- <form enctype="multipart/form-data" action="https://172.16.137.11:8443/Murachi/murachi/archivos" method="post" id="firmar">  -->
    696                                                         <form enctype="multipart/form-data" action="https://murachi.cenditel.gob.ve/Murachi/0.1/archivos" method="post" id="firmar">
     704                                                        <form enctype="multipart/form-data" action="https://murachi.cenditel.gob.ve/Murachi/0.1/archivos" method="post" id="firmar" name="SignFormat">
    697705                                                                <h2>Formato para la Firma</h2>
    698706                                                                <p>Seleccione el tipo de formato que va a utilizar para firmar electrónicamente</p>                     
    699707                                                                <div class="radio">
    700                                                                         <label><input type="radio" name="optradio">PDF</label>
     708                                                                        <label><input type="radio" name="optradio" value="pdf" checked >PDF</label>
    701709                                                                </div>
    702710                                                                <div class="radio">
    703                                                                         <label><input type="radio" name="optradio">BDOC</label>
     711                                                                        <label><input type="radio" name="optradio" value="bdoc" >BDOC</label>
    704712                                                                </div>
    705713                                                                <br>
Note: See TracChangeset for help on using the changeset viewer.