Available in the Full Version

Tree Grid - ASP.NET MVC Helper

NameDate ModifiedTypeSize in KB
Documents9/12/2013File Folder4480
To do list.txt11/30/2013TXT File4448
To do list.txt1/1/0001TXT File4448
Music6/10/2014File Folder5594
Pictures1/20/2014File Folder1825

This sample is designed for a larger screen size.

On mobile, try rotating your screen, view full size, or email to another device.

This sample demonstrates how to utilize the ASP.NET MVC helper to implement a file explorer with the igTreeGrid control. You can see how to customize the expand and collapse icons.

Code View

Copy to Clipboard
@using Infragistics.Web.Mvc
@using IgniteUI.SamplesBrowser.Models
@model IQueryable<IgniteUI.SamplesBrowser.Models.FileExplorer>

<!DOCTYPE html>

<html>
<head>
    <title></title>

    <!-- Ignite UI for jQuery Required Combined CSS Files -->
    <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
    <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/structure/infragistics.css" rel="stylesheet" />

    <script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
    <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>

    <!-- Ignite UI for jQuery Required Combined JavaScript Files -->
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.core.js"></script>
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.lob.js"></script>    

    <style>
        .ui-icon.ui-igtreegrid-expansion-indicator.ui-icon-minus {
            background: url(http://igniteui.com/images/samples/tree-grid/opened_folder.png) !important;
            background-repeat: no-repeat;
        }
        .ui-icon.ui-igtreegrid-expansion-indicator.ui-icon-plus {
            background: url(http://igniteui.com/images/samples/tree-grid/folder.png) !important;
            background-repeat: no-repeat;
        }
		.ui-icon-plus:before {
		    content: '' !important;
		}
		.ui-icon-minus:before{
		    content: '' !important;
		}
    </style>
</head>
<body>

    @(Html.Infragistics().TreeGrid(Model)
        .ID("treegrid1")
        .Width("100%")
        .AutoGenerateColumns(false)
        .PrimaryKey("ID")
        .ChildDataKey("Files")
        .RenderExpansionIndicatorColumn(true)
        .InitialExpandDepth(1)
        .Columns(column =>
            {
                column.For(x => x.ID).Hidden(true);
                column.For(x => x.Name).HeaderText("Name").Width("30%");
                column.For(x => x.DateModified).HeaderText("Date Modified").Width("20%");
                column.For(x => x.Type).HeaderText("Type").Width("20%");
                column.For(x => x.Size).HeaderText("Size in KB").Width("20%");
            })
        .DataBind()
        .Render()
    )
</body>
</html>