Correciones 17/02/2021

git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C536
This commit is contained in:
kledezma 2021-02-17 20:08:24 +00:00
parent 0df97e866b
commit d2cd28a661
4 changed files with 38 additions and 38 deletions

Binary file not shown.

Binary file not shown.

View file

@ -111,7 +111,6 @@
//window.location = strRuta; //window.location = strRuta;
window.open(strRuta , '', '_blank', 'width=500,height=245,left=350,top=400'); window.open(strRuta , '', '_blank', 'width=500,height=245,left=350,top=400');
} }
</script> </script>
<style type="text/css"> <style type="text/css">
body { body {
@ -335,7 +334,7 @@
</tr> </tr>
<tr> <tr>
<td > <td >
<div id="dvCheckFirmado"> <div id="dvCheckFirmado">
<asp:CheckBox ID="chkFirmado" runat="server" Checked="true" Visible="false" Text="Validar firma digital"/> <asp:CheckBox ID="chkFirmado" runat="server" Checked="true" Visible="false" Text="Validar firma digital"/>
</div> </div>
@ -352,13 +351,13 @@
</td> </td>
</tr> </tr>
</table> </table>
<div id="divNotificacion" runat="server" visible="false" class="panel panel-primary"> <div id="divNotificacion" runat="server" visible="false" class="panel panel-primary">
<div class="panel-heading"> <div class="panel-heading">
<h4 class="">Notificar al usuario</h4> <h4 class="">Notificar al usuario</h4>
</div> </div>
<div id="div1" runat="server" visible="true"> <div id="div1" runat="server" visible="true">
<%--Consultar--%> <%--Consultar--%>
<div > <div>
<table id="tbNotificacion" class="table-responsive"> <table id="tbNotificacion" class="table-responsive">
<tr> <tr>
@ -434,13 +433,14 @@
</Columns> </Columns>
</asp:GridView> </asp:GridView>
</div> </div>
</div>
</div>
</div>
</div> <br />
<br />
</div>
<%--Botonera Superior--%>
</div> </div>
<br /> <br />

View file

@ -460,6 +460,32 @@ public partial class Forms_Trans_frwCartaSolicitud : General
#region Eventos Controles Web (R3) #region Eventos Controles Web (R3)
protected void chkNotificacion_CheckedChanged(object sender, EventArgs e)
{
try
{
if (chkNotificacion.Checked)
{
divNotificacion.Visible = true;
}
else
{
divNotificacion.Visible = false;
txtDestinatario.Text = "";
txtObservaciones.Text = "";
chkCFIA.Checked = false;
}
}
catch (Exception ex)
{
MensajeError("Se dio un error.", ex);
}
finally
{
EjecutarScript("inicializaTab('formulario');");
}
}
protected void btnNuevaCarta_Click(object sender, EventArgs e) //M1 protected void btnNuevaCarta_Click(object sender, EventArgs e) //M1
{ {
@ -2154,32 +2180,6 @@ public partial class Forms_Trans_frwCartaSolicitud : General
#endregion #endregion
protected void chkNotificacion_CheckedChanged(object sender, EventArgs e)
{
try
{
if (chkNotificacion.Checked)
{
divNotificacion.Visible = true;
}
else
{
divNotificacion.Visible = false;
txtDestinatario.Text = "";
txtObservaciones.Text = "";
chkCFIA.Checked = false;
}
}
catch (Exception ex)
{
MensajeError("Se dio un error.", ex);
}
finally
{
EjecutarScript("inicializaTab('formulario');");
}
}
protected void grvListaCartaSolicitud_RowDataBound(object sender, GridViewRowEventArgs e) protected void grvListaCartaSolicitud_RowDataBound(object sender, GridViewRowEventArgs e)
{ {