jQWidgets Forums
jQuery UI Widgets › Forums › Grid › How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid
This topic contains 8 replies, has 2 voices, and was last updated by ravireddy 12 years, 9 months ago.
-
Author
-
June 21, 2012 at 3:31 pm How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5201
Hi,
Is there any simple example to read json data hierarchy and display in the grid.
For Json example: {“empName”: “test”, “age”: “67”, “department”:”{“id”:”1234″ , “name”:”Sales”}”, “author”:”ravi”}
How i can read the data like “department.name” and bind to the column in the Grid using jqxGrid. Can any give good example.
June 21, 2012 at 4:59 pm How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5211Hi ravireddy,
Loading of nested values from json hierarchy is still not implemented.
As a workaround you can use this:
<!DOCTYPE html><html lang="en"><head> <title id='Description'>This example shows how to create a Grid from JSON string.</title> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../scripts/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxmenu.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.selection.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.columnsresize.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script> <script type="text/javascript" src="../../scripts/gettheme.js"></script> <script type="text/javascript"> $(document).ready(function () { var theme = getTheme(); var data = [{ "empName": "test", "age": "67", "department": "{'id':'1234', 'name':'Sales'}", "author": "ravi"}]; // prepare the data var source = { datatype: "json", datafields: [ { name: 'empName' }, { name: 'age' }, { name: 'id', map: 'department' }, { name: 'name', map: 'department' }, { name: 'author' } ], localdata: data }; var dataAdapter = new $.jqx.dataAdapter(source); var renderer = function (row, column, value) { var index = value.indexOf(column); var valueToDisplay = ""; for (var p = index + column.length + 3; p < value.length; p++) { var char = value.substring(p, p + 1); if (char == "'") break; valueToDisplay += char; } return '<span style="margin: 4px; float: left;">' + valueToDisplay + '</span>'; } $("#jqxgrid").jqxGrid( { width: 670, source: dataAdapter, theme: theme, columnsresize: true, columns: [ { text: 'Employee Name', datafield: 'empName', width: 250 }, { text: 'Age', datafield: 'age', width: 150 }, { text: 'Id', datafield: 'id', width: 180, cellsrenderer: renderer }, { text: 'Name', datafield: 'name', width: 120, cellsrenderer: renderer }, { text: 'Author', datafield: 'author', width: 120 } ] }); }); </script></head><body class='default'> <div id='jqxWidget'> <div id="jqxgrid"></div> </div></body></html>
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comJune 21, 2012 at 8:54 pm How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5216HI Peter,
Thanks for the quick response, But i have a concern about work around solution.
I have requirement where i’m getting JSON response from service which have 15 level deep and i need to display data using JQx widgets.
If i do work around solution i will be end up N number of looping logic in JQuery script.
We like your components widgets but i have following questions
When you guys are planning to implement to load of nested values from json hierarchy ?
How quick this version of libraries going to be available ?
Because we need to make deceision which JQuery component libraries we need to use which lead for buying license.
Please let me know the answers for above posted questions.
Regards,
RaviJune 22, 2012 at 12:15 pm How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5237Hi Ravi,
We’ll implement JSON mapping in the next version which will be available in the second half of July. In the new version, you will be able to load the Grid from hierarchical JSON, by using such syntax:
<!DOCTYPE html><html lang="en"><head> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../scripts/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxmenu.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.selection.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxgrid.columnsresize.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxdata.js"></script> <script type="text/javascript"> $(document).ready(function () { var theme = ''; var data = [{ "empName": "test", "age": "67", "department": { "id": "1234", "name": "Sales" }, "author": "ravi"}]; // prepare the data var source = { datatype: "json", datafields: [ { name: 'empName' }, { name: 'age' }, { name: 'id', map: 'department>id' }, { name: 'name', map: 'department>name' }, { name: 'author' } ], localdata: data }; var dataAdapter = new $.jqx.dataAdapter(source); $("#jqxgrid").jqxGrid( { width: 670, source: dataAdapter, theme: theme, columnsresize: true, columns: [ { text: 'Employee Name', datafield: 'empName', width: 250 }, { text: 'Age', datafield: 'age', width: 150 }, { text: 'Id', datafield: 'id', width: 180 }, { text: 'Name', datafield: 'name', width: 120 }, { text: 'Author', datafield: 'author', width: 120 } ] }); }); </script></head><body class='default'> <div id='jqxWidget'> <div id="jqxgrid"></div> </div></body></html>
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comJune 22, 2012 at 2:36 pm How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5240Hi Peter,
Thanks for the quick response, Let me know when is the new version release data going to be ?,
So that i can download latest version and play around and I can plan move forward accordingly for license.
June 25, 2012 at 6:06 am How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5290Hi ravireddy,
The new version is planned for the second half of July.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comJune 28, 2012 at 2:31 pm How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5451Hi Peter,
Can you send me the a valid and working alternate solution to read the json hierarchy.
The solution which you posted earlier it does not works at all, I tried to put your idea in my code but does not working at all.
It will great help if you post a working solution.
Regards,
RaviJune 28, 2012 at 2:48 pm How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5452Hi ravireddy,
I am unable to provide a different workaround for this missing feature. We’ll have a solution when the new version is released.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comJune 28, 2012 at 6:43 pm How to read the json data hierarchically (deeper level) and bind the value to column in JqxGrid #5463Hi Peter,
Thanks for the information, We will wait for the new version release.
-
AuthorPosts
You must be logged in to reply to this topic.