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

View file

@ -460,6 +460,32 @@ public partial class Forms_Trans_frwCartaSolicitud : General
#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
{
@ -2154,32 +2180,6 @@ public partial class Forms_Trans_frwCartaSolicitud : General
#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)
{