示例#1
0
        private void CargaGrilla(int indice)
        {
            DataTable table = ConsultasEspecificas.ConsultaTableroDOS(
                !string.IsNullOrEmpty(this.txtRutCliente.Text) ? this.txtRutCliente.Text.Replace(".", string.Empty).Trim() : this.cbxCliente.SelectedValue,
                this.txtRutDeudor.Text.Replace(".", string.Empty).Trim(),
                this.txtNroOperacion.Text,
                this.cbxProducto.SelectedValue,
                this.cbxbogado.SelectedValue,
                this.cbxProcurador.SelectedValue,
                this.cbxTribunal.SelectedValue,
                this.cbxEstadoJuicio.SelectedValue,
                this.cbxTramite.SelectedValue,
                ALCSA.FWK.Web.Control.ExtraerValorComoEntero(cbxRemesas),
                cbxCobranzaConJuicio.SelectedValue.Equals("1") ? true : false,
                ALCSA.FWK.Web.Control.ExtraerValorComoEntero(cbxActividadGestion)
                );

            //Jbaez: Indica El total de registros encontrados 29-12-2013
            lab_Total_Registros.Text = table.Rows.Count.ToString();

            this.Grilla.PageIndex  = indice;
            this.Grilla.DataSource = table;
            this.Grilla.DataBind();

            ConcatenarDatosFiltro();
        }