/script> 
    <script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script> 
    <script type="text/javascript" src="../../scripts/demos.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            var url = "../sampledata/data.php";

            // prepare the data
            var source =
            {
                datatype: "json",
                datafields: [
                    { name: 'firstname' },
                    { name: 'lastname' },
                    { name: 'productname'},
                    { name: 'quantity', type: 'int' },
                    { name: 'price', type: 'float' },
                    { name: 'total', type: 'float' }
                ],
                id: 'id',
                url: url,
                root: 'data'
            };
            var dataAdapter = new $.jqx.dataAdapter(source);

            $("#jqxgrid").jqxGrid(
            {
                width: 850,
                source: dataAdapter,
                columnsresize: true,
                columns: [
                  { text: 'First Name', dataField: 'firstname', width: 200 },
                  { text: 'Last Name', dataField: 'lastname', width: 200 },
                  { text: 'Product', dataField: 'productname', width: 180 },
                  { text: 'Quantity', dataField: 'quantity', width: 80, cellsalign: 'right' },
                  { text: 'Unit Price', dataField: 'price', width: 90, cellsalign: 'right', cellsformat: 'c2' },
                  { text: 'Total', dataField: 'total', cellsalign: 'right', minwidth: 100, cellsformat: 'c2' }
                ]
            });
        });
    </script>
</head>
<body class='default'>
    <div id='jqxWidget' style="font-size: 13px; font-family: Verdana; float: left;">
        <div id="jqxgrid"></div>
    </div>
</body>
</html>

<!--data.php
{"data":[{"firstname":"Andrew","lastname":"Fuller","productname":"Black Tea","price":"2.25","quantity":4,"total":9},{"firstname":"Nancy","lastname":"Davolio","productname":"Green Tea","price":"1.5","quantity":6,"total":9},{"firstname":"Shelley","lastname":"Burke","productname":"Caffe Espresso","price":"3.0","quantity":5,"total":15},{"firstname":"Regina","lastname":"Murphy","productname":"Doubleshot Espresso","price":"3.3","quantity":2,"total":6.6},{"firstname":"Yoshi","lastname":"Nagase","productname":"Caffe Latte","price":"4.5","quantity":3,"total":13.5},{"firstname":"Antoni","lastname":"Saavedra","productname":"White Chocolate Mocha","price":"3.6","quantity":10,"total":36},{"firstname":"Mayumi","lastname":"Ohno","productname":"Cramel Latte","price":"3.8","quantity":4,"total":15.2},{"firstname":"Ian","lastname":"Devling","productname":"Caffe Americano","price":"2.5","quantity":9,"total":22.5},{"firstname":"Peter","lastname":"Wilson","productname":"Cappuccino","price":"5.0","quantity":4,"total":20},{"firstname":"Lars","lastname":"Peterson","productname":"Espresso Truffle","price":"1.75","quantity":5,"total":8.75},{"firstname":"Petra","lastname":"Winkler","productname":"Espressocon Panna","price":"3.25","quantity":1,"total":3.25},{"firstname":"Martin","lastname":"Bein","productname":"Peppermint Mocha Twist","price":"4.0","quantity":1,"total":4},{"firstname":"Sven","lastname":"Petersen","productname":"Black Tea","price":"2.25","quantity":6,"total":13.5},{"firstname":"Elio","lastname":"Rossi","productname":"Green Tea","price":"1.5","quantity":8,"total":12},{"firstname":"Beate","lastname":"Vileid","productname":"Caffe Espresso","price":"3.0","quantity":10,"total":30},{"firstname":"Cheryl","lastname":"Saylor","productname":"Doubleshot Espresso","price":"3.3","quantity":3,"total":9.899999999999999},{"firstname":"Michael","lastname":"Bjorn","productname":"Caffe Latte","price":"4.5","quantity":2,"total":9},{"firstname":"Guylene","lastname":"Nodier","productname":"White Chocolate Mocha","price":"3.6","quantity":1,"total":3.6}]}-->