HomeBlogBooksProjectsArchiveAboutlogo

Filling Flexigrid with JSON/XML data

09 December, 2011 - 1 min read

Flexigrid 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.

© I built this site withGatsbyfrom the starterjuliaand made a bunch of modifications. The full content is available in myrepository. Icons made byFreepik from Flaticon