Beispiel #1
0
        protected void Llenar_Grilla(DataGrid grilla, DataTable tablaAsociada, string codigoGrupo, string grupo)
        {
            DataSet operacionesPeritaje = new DataSet();

            DBFunctions.Request(operacionesPeritaje, IncludeSchema.NO, "SELECT pitp_descripcion FROM pitemperitaje WHERE pgrp_codigo='" + codigoGrupo + "'");
            for (int i = 0; i < operacionesPeritaje.Tables[0].Rows.Count; i++)
            {
                DataRow fila = tablaAsociada.NewRow();
                fila[grupo] = operacionesPeritaje.Tables[0].Rows[i][0].ToString();
                tablaAsociada.Rows.Add(fila);
            }
            grilla.DataSource = tablaAsociada;
            grilla.DataBind();
            for (int i = 0; i < grilla.Items.Count; i++)
            {
                RadioButtonList estados = new RadioButtonList();
                estados.RepeatDirection = RepeatDirection.Horizontal;
                TextBox         detalle = new TextBox();
                TextBox         costo   = new TextBox();
                DatasToControls bind    = new DatasToControls();
                bind.PutDatasIntoRadioButtonList(estados, "SELECT tespe_descripcion FROM testadoperitaje ORDER BY tespe_jerar ASC");
                grilla.Items[i].Cells[1].Controls.Add(estados);
                grilla.Items[i].Cells[2].Controls.Add(detalle);
                grilla.Items[i].Cells[3].Controls.Add(costo);
            }
        }
Beispiel #2
0
 protected void Page_Load(object sender, System.EventArgs e)
 {
     //botones q hace la confirmacion de los datos y cancela el boton para q no se produzca. doble facturacion o etc
     //confirmar.Attributes.Add("Onclick","document.getElementById('"+confirmar.ClientID+"').disabled = true;"+this.Page.GetPostBackEventReference(confirmar)+";");
     //confirmar.Attributes.Add("onClick","confirm('Esta seguro que desea Continuar?')");
     if (!IsPostBack)
     {
         Session["tablaAccesorios"] = null;
         Llenar_Tabla_Accesorios();
         bind.PutDatasIntoRadioButtonList(nivelCombustible, "SELECT tnivcomb_codigo, tnivcomb_descripcion FROM tnivelcombustible");
         bind.PutDatasIntoDropDownList(ddlencuesta, "SELECT tres_sino,tres_nombre FROM trespuestasino");
         bind.PutDatasIntoDropDownList(ddlelevador, "SELECT tres_sino,tres_nombre FROM trespuestasino");
         bind.PutDatasIntoDropDownList(ddlpresupuesto, "SELECT tres_sino,tres_nombre FROM trespuestasino");
         if (ddlencuesta.Items.Count > 2)
         {
             ddlencuesta.SelectedIndex = 2;
         }
         if (ddlelevador.Items.Count > 2)
         {
             ddlelevador.SelectedIndex = 2;
         }
         if (ddlpresupuesto.Items.Count > 2)
         {
             ddlpresupuesto.SelectedIndex = 2;
         }
         ddlencuesta.Items.Insert(0, "--Escoja--");
         ddlelevador.Items.Insert(0, "--Escoja--");
         ddlpresupuesto.Items.Insert(0, "--Escoja--");
     }
     else
     {
         tablaAccesorios = (DataTable)Session["tablaAccesorios"];
         //accesorios.DataSource = tablaAccesorios;
     }
 }
Beispiel #3
0
 protected void Page_Load(object sender, System.EventArgs e)
 {
     //Ajax.Utility.RegisterTypeForAjax(typeof(AMS.Automotriz.DatosPropietario));// cambio realizado 1 febrero
     strDatosC = Request.Form[datosc.UniqueID];
     strDatosE = Request.Form[datose.UniqueID];
     strDatosF = Request.Form[datosf.UniqueID];
     strDatosG = Request.Form[datosg.UniqueID];
     strDatosH = Request.Form[datosh.UniqueID];
     if (!IsPostBack)
     {
         DatasToControls bind = new DatasToControls();
         bind.PutDatasIntoRadioButtonList(tipoCliente, "SELECT tpro_codigo, tpro_nombre FROM tpropietariotaller");
         bind.PutDatasIntoDropDownList(tipoPago, "SELECT ttip_codigo ,ttip_nombre FROM dbxschema.ttipopago where ttip_codigo<>'DL' and ttip_codigo <> 'DC'");
         tipoPago.Items.Insert(0, "Seleccione..");
         bind.PutDatasIntoDropDownList(datosd, "SELECT pciu_codigo AS CODIGO,pciu_nombre AS CIUDAD FROM dbxschema.pciudad ORDER BY pciu_nombre asc");
         datosd.Items.Insert(0, "Seleccione..");
         bind.PutDatasIntoDropDownList(tipid, "SELECT TNIT_TIPONIT, TNIT_NOMBRE from TNIT order by 2");
         tipid.Items.Insert(0, "");
         DatasToControls.EstablecerDefectoRadioButtonList(tipoCliente, "Propietario");
         DatasToControls.EstablecerDefectoDropDownList(tipoPago, "Efectivo");
     }
 }