Available in the OSS Version

Tile Manager - Data Binding

This sample demonstrates binding the Tile Manager control to JSON data source.
Penne Arrabiata

Lamb Chops

  • 8 lamb chops
  • 2 large crushed garlic cloves
  • 1 tablespoon fresh rosemary leaves
  • 1 teaspoon fresh thyme leaves
  • 3 tablespoons olive oil
  • 1 pinch cayenne pepper
  • pink Himalayan salt
Tomato Soup
Caesar Salad
Strawberry Sorbet
Tiramisu

This sample is designed for a larger screen size.

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

Code View

Copy to Clipboard
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<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" />

    <!-- Modernizr/jQuery/jQuery UI -->
    <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>

    <script src="/data-files/recipes.js"></script>
</head>
<body>
    <style type="text/css">
        .dashboard {         
            color: #2b2b2b;
            position: relative;
            width: 100%;
            height: 500px;
            margin-top: -10px;
            margin-left: -5px;
        }

        .ui-widget.ui-widget-content.dashboard {
            border: 0;
        }

        .item-inner-container {
            width:100%;
            height:100%;
            background-repeat:no-repeat;
            background-position: center center;
            background-size: cover;
        }

        .ig-layout-item, .ui-igtile-inner-container {
            padding: 0;
            margin: 0;
            border: 0;
        }

        .minimized-title-container {
            display: none;
            background: rgba(255,255,255,0.75);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2ffffff,endColorstr=#b2ffffff);
            position:absolute; 
            bottom: 0;
            width: 100%; 
            height: 17%;
        }

        .max-title-and-ingredients-container, .minimized-title-container {
            font-size: 18px;
            font-family: Calibri;
            overflow: hidden;
        }

        .minimized-title {
            font-weight: bold;
            padding-left: 5px;
            display: table-cell;
            height: 100%;
            vertical-align: middle;
        }

        .ig-layout-item.ui-state-hover .minimized-title-container {
            display: table;
        }

        .max-title-and-ingredients-container {
            height: 100%;
            background: rgba(255,255,255,0.7);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b2ffffff,endColorstr=#b2ffffff);
            padding: 5px 10px;
            box-sizing: border-box;
        }

        h3 {
            font-size: 26px;
        }

        .ingredients {
            list-style-type: none;
            padding-top: 2px;
        }

        .ui-igtilemanager {
            overflow: initial;
        }

        @media all and (max-width: 480px) {
            h3 {
                font-size: 22px;
            }

            .max-title-and-ingredients-container, .minimized-title-container {
                font-size: 17px;
            }
        }

        @media all and (max-width: 360px) {
            .max-title-and-ingredients-container, .minimized-title-container {
                font-size: 15px;
            }
        }
    </style>
    
    <div id="dashboard" class="dashboard">
    </div>

    <script type="text/javascript">
        $(function () {            
            var options = {
                width: "100%",
                height: "500px",
                marginLeft: 10,
                marginTop: 10,
                dataSource: recipes,
                items: [
                    { rowIndex: 0, colIndex: 0, rowSpan: 1, colSpan: 1 },
                    { rowIndex: 0, colIndex: 1, rowSpan: 2, colSpan: 2 },
                    { rowIndex: 1, colIndex: 0, rowSpan: 1, colSpan: 1 },
                    { rowIndex: 2, colIndex: 0, rowSpan: 1, colSpan: 1 },
                    { rowIndex: 2, colIndex: 1, rowSpan: 1, colSpan: 1 },
                    { rowIndex: 2, colIndex: 2, rowSpan: 1, colSpan: 1 }
                ],
                maximizedTileIndex: 1,
                maximizedState: $("#maximized-state").html(),
                minimizedState: $("#minimized-state").html()
            }
            
            $("#dashboard").igTileManager(options);
        });
    </script>

    <script id="maximized-state" type="text/template">
        <div class="item-inner-container" style="background-image: url(${picture}); 
            filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='${picture}',sizingMethod='scale');">
            <div class="max-title-and-ingredients-container">
                <h3>${name}</h3>
                <ul class="ingredients">
                    {{each ${ingredients} }}
                        <li>${ingredients.description}</li>
                    {{/each}}
                </ul>
            </div>
        </div>
    </script>

    <script id="minimized-state" type="text/template">
        <div class="item-inner-container" style="background-image: url(${picture});
            filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='${picture}',sizingMethod='scale');">
            <div class="minimized-title-container">
                <div class="minimized-title">
                    ${name}
                </div>
            </div>
        </div>
    </script>
</body>
</html>