Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
530
Is it possible to create multicolumnheader for a igHierarchicalGrid with load on demand
posted

in my controller i have the code describing the model..

for a simple header i do this:

grid.Columns = new List<GridColumn>();

grid.Columns.Add(new GridColumn("IDEmpresa", "IDEmpresa", "number", "0px"));
grid.Columns.Add(new GridColumn("Nome da Empresa", "NomeEmpresa", "string", "200px"));
grid.Columns.Add(new GridColumn("Nif", "Nif", "string", "100px"));
grid.Columns.Add(new GridColumn("Tipo", "Tipo", "string", "100px"));
grid.Columns.Add(new GridColumn("Criada por:", "CriadaPeloIDU", "string", "100px"));
grid.Columns.Add(new GridColumn("Da Empresa:", "CriadaPeloIDUDaEmpresa", "string", "100px"));

how can i do it in hierarchical grid?

Parents
No Data
Reply
  • 530
    posted

    i have been trying to find information/code about this... 

    can you tell me if this is possible,,,,

    how can i do that...

    i will just give up on this problem...

    is it possible to have a hierarchicalgrid with load on demand and multicolumn header?

    there are some pages from infragistics that are displayed in  the google search info about group and gridmulticoulmnheader that give error...

Children