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 {
@ -358,7 +357,7 @@
</div>
<div id="div1" runat="server" visible="true">
<%--Consultar--%>
<div >
<div>
<table id="tbNotificacion" class="table-responsive">
<tr>
@ -434,12 +433,13 @@
</Columns>
</asp:GridView>
</div>
</div>
</div>
<%--Botonera Superior--%>
</div>
<br />
<br />
</div>

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)
{