Esempio n. 1
0
        private void AddColumnsCursoIntensivo(Cgrupo controllerGrupo, Cdocente controllerDocente)
        {
            this.GridAssignedGroups.Reconfigure();
            this.StoreGroups.Model[0].Fields.Add("CODIGO", "GRUP_NOMBRE", "ASIG_NOMBRE", "Periodó Académico", "ASIG_PROGRAMA");
            this.StoreGroups.DataSource = this.controllerGrupo.ConsultarGrupos(controllerGrupo, controllerDocente);
            this.StoreGroups.DataBind();
            Column col = new Column
            {
                Text      = "Asignatura",
                Width     = 85,
                Sortable  = true,
                DataIndex = "ASIG_NOMBRE",
                Flex      = 1
            };
            Column col2 = new Column
            {
                Text      = "Programa académico",
                Width     = 85,
                Sortable  = true,
                DataIndex = "ASIG_PROGRAMA",
                Flex      = 1
            };

            this.GridAssignedGroups.InsertColumn(4, col);
            this.GridAssignedGroups.InsertColumn(5, col2);;
        }
Esempio n. 2
0
        private void AddColumnsSeminario(Cgrupo controllerGrupo, Cdocente controllerDocente)
        {
            this.GridAssignedGroups.Reconfigure();
            this.StoreGroups.Model[0].Fields.Add("CODIGO", "GRUP_NOMBRE", "Tema", "Periodó Académico", "Programa académico");

            this.StoreGroups.DataSource = this.controllerGrupo.ConsultarGrupos(controllerGrupo, controllerDocente);
            this.StoreGroups.DataBind();
            Column col = new Column
            {
                Text      = "Tema",
                Width     = 85,
                Sortable  = true,
                DataIndex = "Tema",
                Flex      = 1
            };
            Column col2 = new Column
            {
                Text      = "Programa académico",
                Width     = 85,
                Sortable  = true,
                DataIndex = "Programa académico",
                Flex      = 1
            };

            this.GridAssignedGroups.InsertColumn(4, col);
            this.GridAssignedGroups.InsertColumn(5, col2);
            comandColumn1.Hidden = true;
        }
Esempio n. 3
0
 public SeminariosDocente()
 {
     controllerPrematricula = new Cprematricula();
     controllerGrupo        = new Cgrupo();
     controllerCurso        = new Ccurso();
     controllerDocente      = new Cdocente();
     controllerSistema      = new Csistema_evaluacion();
     controllerNota         = new Cnota();
     controllerCalificacion = new Ccalificacion();
     ctrlModulo             = new Cmodulo();
     listNote     = new List <Cnota>();
     dtNotesGroup = new DataTable();
     dtNotes      = new DataTable();
     dtSeminarios = new DataTable();
     culture      = new CultureInfo("en-US");
     myTI         = new CultureInfo("en-US", false).TextInfo;
 }