Filling Flexigrid with JSON/XML data
Join the DZone community and get the full member experience.
Join For FreeFlexigrid is one of the most useful and powerful grid plugins for jQuery. Unfortunately, as the author explains in the project page, there is no much documentation so you must learn how to use it looking at existing code.
If anytime you need to fill a Flexigrid with JSON or XML content and you are a little buggy to look at example code, here is the great summary:
Remember XML/JSON data must follow the next rules: total, page, rows. And for every row specify and id and a cell structure.
Next steps show you how to make it run step by step.
- Sample data for both types are:
{ page: 1, total: 2, rows: [ {id: 'reg1', cell: ['reg1-cell1','reg1-cell2']}, {id: 'reg2', cell: ['reg2-cell1','reg2-cell2']} ] }
<rows> <page>1</page> <total>2</total> <row id="reg1"> <cell>reg1-cell1</cell> <cell>reg1-cell2</cell> </row> <row id="reg2"> <cell>reg2-cell1</cell> <cell>reg2-cell2</cell> </row> </rows>
- Put some element on your HTML document:
<p id="yourId"></p>
- Convert that element into a flexigrid with:
$("#yourId").flexigrid({ url: 'your_file_name.json_or_xml', dataType: 'json', ... }
Now you know how to build a gorgeous grid from XML or JSON data.
From http://acuriousanimal.com/blog/2011/12/09/filling-flexigrid-with-jsonxml-data/
Opinions expressed by DZone contributors are their own.
Comments