Available in the Full Version

Data Grid - JSON Binding

John Smith45
Mary Johnson32
Bob Ferguson27
NameAge

This sample is designed for a larger screen size.

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

The sample demonstrates how to bind igGrid to JSON data source.

Code View

Copy to Clipboard
<!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>
        #grid_container
        {
            width: 100%;
            max-width: 560px;
        }
    </style>

</head>
<body>

    <table id="grid"></table>

    <script>
        $(function () {

            var data = [
                      { "Name": "John Smith", "Age": 45 },
                      { "Name": "Mary Johnson", "Age": 32 },
                      { "Name": "Bob Ferguson", "Age": 27 }
                ];
            
            $("#grid").igGrid({
                dataSource: data //JSON Array defined above                     
            });
        });
    </script>

</body>
</html>