Hi! I'm actively using TreeListView, and it's an amazing control. I would like to accomplish something like one of the samples of the web I have this structure: public class Work { public int Id {get;set;} public List<Verifications> Verifications {get;set;} public List<File> Files {get;set;} } public class Verification { //Properties } public class File { //Properties } Right now I can build a tree like this: Projects |--Work1 ||----Verification1 ||----Verification2 |--Work2 ||----Verification1 ||----Verification2...
Hi! I'm activeluy using TreeListView, and it's an amazing control. I would like to accomplish something like one of the samples of the web I have this structure: public class Work { public int Id {get;set;} public List<Verifications> Verifications {get;set;} public List<File> Files {get;set;} } public class Verification { //Properties } public class File { //Properties } Right now I can build a tree like this: Projects |--Work1 ||----Verification1 ||----Verification2 |--Work2 ||----Verification1...
Hi! I'm activeluy using TreeListView, and it's an amazing control. I would like to accomplish something like one of the samples of the web I have this structure: public class Work { public int Id {get;set;} public List<Verifications> Verifications {get;set;} public List<File> Files {get;set;} } public class Verification { //Properties } public class File { //Properties } Right now I can build a tree like this: Projects |--Work1 ||----Verification1 ||----Verification2 |--Work2 ||----Verification1...
HI! I'm using a treelistview. It works flawlesly. I have a two level object hierarchy. Depending on the type of object I asign it an image from a imagelist. This works well. Previously I was using an objectlistview. I had a first column with a white star image. The user would click on it and the star would change to a full yellow star. This also triggered some sql changes so the user added that object to a favourite table. I can't really replicate this with the treelistview. Is it possible to add...
Hi! Sorry to bother @grammarian but, Is there a way to add a text filter to the "excel-like" filter? It would be great to have a way to filter by "Contains..." or "Starts with..." Thank you for this great control!
Thank you Phillip!! That worked flawlessly!! Thank you for your's and code shark help!!
Double post, sorry
Hi! That works! I added a computed property to SubTipo class: [Computed] public string DescriptionAspectName { get => (Equipos as List<EquipoGenerico<EquipoHerramienta>>)[0].Modelo;} It's like a workaround, because this way I have to specify Type of EquipoGenerico. I wonder if there would be a way to write just: renderer.DescriptionAspectName = "Equipos[0].Marca" /*I also tried this and does not work for the same reason: Equipos[0] is not a parameter-less method, property or field of type SubTipo;...