コード例 #1
0
        private void BindGrid(bool configurarExportarExcel)
        {
            try
            {
                AdministrarGrillas.Configurar(dtgResumido, "ID", CantidadOpciones, true, false);

                // Reviso si tengo que configurar la grilla para exportar a excel
                if (configurarExportarExcel)
                {
                    // Tengo que configurar para exportar a excel
                    dtgResumido.AllowPaging = false;
                    //dtgResumido.Columns[1].Visible = false;
                    // dtgResumido.BorderWidth = Unit.Pixel(0);
                    dtgResumido.BorderColor = System.Drawing.Color.White;
                    dtgResumido.BorderStyle = BorderStyle.None;
                }
                IIntentoReImpresion res = IntentoReImpresionFactory.GetIntentoReImpresionFactory();
                res.FechaInicio = Convert.ToDateTime(txtFecha.Text);
                res.FechaFin    = Convert.ToDateTime(txtFechaHasta.Text);
                res.Agencias    = getListaAg(chkAgenciaTodas, lstAgencia);
                DsIntentoReImpresionResumen ds = res.GetResumen();
                dtgResumido.DataSource = ds;
                dtgResumido.DataBind();
            }
            catch (Exception ex)
            {
                ((ErrorWeb)phErrores.Controls[0]).setMensaje(ex.Message);
            }
        }
コード例 #2
0
        private void BindGridDetallado(bool configurarExportarExcel)
        {
            AdministrarGrillas.Configurar(dtgDetallado, "ID", CantidadOpciones, true, false);

            // Reviso si tengo que configurar la grilla para exportar a excel
            if (configurarExportarExcel)
            {
                // Tengo que configurar para exportar a excel
                dtgDetallado.AllowPaging = false;
                //dtgDetallado.BorderWidth = Unit.Pixel(0);
                dtgDetallado.BorderColor = System.Drawing.Color.White;
                dtgDetallado.BorderStyle = BorderStyle.None;
            }
            IIntentoReImpresion res = IntentoReImpresionFactory.GetIntentoReImpresionFactory();

            res.FechaInicio = Convert.ToDateTime(txtFecha.Text);
            res.FechaFin    = Convert.ToDateTime(txtFechaHasta.Text);
            res.Agencias    = getListaAg(chkAgenciaTodas, lstAgencia);
            DsIntentoReImpresionDetalle ds = res.GetDetalle();

            dtgDetallado.DataSource = ds;
            dtgDetallado.DataBind();
        }