]> git.llucax.com Git - z.facultad/75.10/miklolife.git/commitdiff
Implemento search y reordenacion en el treeview
authorRicardo Markiewicz <gazer.arg@gmail.com>
Thu, 7 Jul 2005 17:23:31 +0000 (17:23 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Thu, 7 Jul 2005 17:23:31 +0000 (17:23 +0000)
demo/src/Vistas/ConsultarAfiliado.cs

index 0b865b7262e66f12aa9b8ad003a5f84a89c13c79..50ef4c4ad5504111461e90c4b22c6a21328fde62 100644 (file)
@@ -45,7 +45,7 @@ public class VConsultarAfiliado
                xml = new Glade.XML (null, "consultar_afiliado.glade", "consultar_afiliado", null);
                xml.Autoconnect (this);
 
-               lista.Model = new ListStore (typeof(int), typeof(string), typeof(int), typeof (string), typeof(string));
+               lista.Model = new TreeModelSort (new ListStore (typeof(int), typeof(string), typeof(int), typeof (string), typeof(string)));
 
                /* Columnas */
                lista.HeadersVisible = true;
@@ -54,6 +54,14 @@ public class VConsultarAfiliado
                lista.AppendColumn ("Número Doc.", new CellRendererText (), "text", 2);
                lista.AppendColumn ("Nombre", new CellRendererText (), "text", 3);
                lista.AppendColumn ("Apellido", new CellRendererText (), "text", 4);
+
+               int i = 0;
+               foreach (TreeViewColumn col in lista.Columns) {
+                       col.SortColumnId = i++;
+               }
+               lista.EnableSearch = true;
+               lista.Reorderable = true;
+               lista.HeadersClickable = true;
        }
 
        public void OnVerAfiliado (object o, EventArgs args)
@@ -117,7 +125,7 @@ public class VConsultarAfiliado
                }
                
                AfiliadoSolicitanteController c = new AfiliadoSolicitanteController (); 
-               ListStore store = (ListStore)lista.Model;
+               ListStore store = (lista.Model as TreeModelSort).Model as ListStore;
                store.Clear ();
                ArrayList lst = c.BuscarAfiliados (tipoDoc, nroDoc, cod, null);
                foreach (Afiliado p in lst) {