コード例 #1
0
        private void CaricaCombo()
        {
            //Caricol il combo Del Tipo Intervento
            ListTipoManutenzione.Items.Clear();
            S_ControlsCollection CollezioneControlli = new  S_ControlsCollection();

            Classi.ClassiAnagrafiche.TipoIntervento _TipoIntervento = new TheSite.Classi.ClassiAnagrafiche.TipoIntervento();

            DataSet _MyDs;

            _MyDs = _TipoIntervento.GetData();


            if (_MyDs.Tables[0].Rows.Count > 0)
            {
                this.ListTipoManutenzione.DataSource     = _MyDs.Tables[0];
                this.ListTipoManutenzione.DataTextField  = "descrizione_breve";
                this.ListTipoManutenzione.DataValueField = "id";
                this.ListTipoManutenzione.DataBind();
            }
            else
            {
                string s_Messagggio = "- Nessun Tipo Intervento -";
                this.ListTipoManutenzione.Items.Add(Classi.GestoreDropDownList.ItemMessaggio(s_Messagggio, String.Empty));
            }
        }
コード例 #2
0
        private void BindTipoInterventoAter()
        {
            //Caricol il combo Del Tipo Intervento
            cmbsTipoIntervento.Items.Clear();
            S_ControlsCollection CollezioneControlli = new  S_ControlsCollection();

            Classi.ClassiAnagrafiche.TipoIntervento _TipoIntervento = new TheSite.Classi.ClassiAnagrafiche.TipoIntervento();

            DataSet _MyDs;

            _MyDs = _TipoIntervento.GetData();


            if (_MyDs.Tables[0].Rows.Count > 0)
            {
                this.cmbsTipoIntervento.DataSource = Classi.GestoreDropDownList.ItemBlankDataSource(
                    _MyDs.Tables[0], "descrizione_breve", "ID", "- Selezionare il Tipo Intervento -", "");
                this.cmbsTipoIntervento.DataTextField  = "descrizione_breve";
                this.cmbsTipoIntervento.DataValueField = "id";
                this.cmbsTipoIntervento.DataBind();
            }
            else
            {
                string s_Messagggio = "- Nessun Tipo Intervento -";
                this.cmbsTipoIntervento.Items.Add(Classi.GestoreDropDownList.ItemMessaggio(s_Messagggio, String.Empty));
            }
        }
コード例 #3
0
ファイル: TipoIntervento.aspx.cs プロジェクト: dev191/le-fco
        private void Ricerca()
        {
            Classi.ClassiAnagrafiche.TipoIntervento _TipoIntervento = new TheSite.Classi.ClassiAnagrafiche.TipoIntervento();


            this.txtsDescrizione.DBDefaultValue      = "%";
            this.txtsDescrizioneBreve.DBDefaultValue = "%";

            this.txtsDescrizione.Text      = this.txtsDescrizione.Text.Trim();
            this.txtsDescrizioneBreve.Text = this.txtsDescrizioneBreve.Text.Trim();

            S_ControlsCollection _SCollection = new S_ControlsCollection();

            _SCollection.AddItems(this.PanelRicerca.Controls);
            DataSet _MyDs = _TipoIntervento.GetData(_SCollection).Copy();

            this.DataGridRicerca.DataSource = _MyDs.Tables[0];
            if (_MyDs.Tables[0].Rows.Count == 0)
            {
                DataGridRicerca.CurrentPageIndex = 0;
            }
            else
            {
                int Pagina = 0;
                if ((_MyDs.Tables[0].Rows.Count % DataGridRicerca.PageSize) > 0)
                {
                    Pagina++;
                }
                if (DataGridRicerca.PageCount != Convert.ToInt16((_MyDs.Tables[0].Rows.Count / DataGridRicerca.PageSize) + Pagina))
                {
                    DataGridRicerca.CurrentPageIndex = 0;
                }
            }

            this.DataGridRicerca.DataBind();
            this.GridTitle1.NumeroRecords = _MyDs.Tables[0].Rows.Count.ToString();
        }