$(function () {
        var abc = "{\"total\": 3, \"rows\": [{ \"code\": \"001\", \"name\": \"name 1\", \"price\": \"Price 11\" }, { \"code\": \"012\", \"name\": \"name 2\", \"price\": \"Price 69\" }, { \"code\": \"018\", \"name\": \"name 4\", \"price\": \"Price 78\" }] }";
        $("#tt").datagrid({
            url: abc,
            columns: [[
                { field: 'code', title: 'Code', width: 100 },
                { field: 'name', title: 'Name', width: 100 },
                { field: 'price', title: 'Price', width: 100 }
            ]]
        });
    });jQuerydatagrideasyui