Fork me on GitHub

The Meliorator

First, let's

Get some data via an API...

                            var settings = {
 "url": "https://api.myjson.com/bins/183uzk",
 "method": "GET",
  "headers": {
	"content-type": "application/json"
  },
}

// in this case, the data is obtained via an api already as a JSON object, and then we pass the result to 
// Meliorator to render for us a table respecting embedded images and objects... (basically, do nothing else)
$.ajax(settings).done(function (response) {
  initPanels(response);
});

                            
                        

Then, with the parsed dataset

We can Meliorate

                            function initPanels(data){
               
	$('#table').Meliorator('table', {
		data: data,
		tableClass: 'derivedTable'
	});

	$('#analytics').Meliorator('analytics-panel', {
		data: data
	});

}      

                            
                        

To get?

This!

And

This amazing analytics panel for FREE!


Checkout

Other Examples...

Sourcing data from existing HTML Tables
(Design/View) Dashboard Mode Example
Render Pre-existing a Dashboard

It's Open Source!

The project is still evolving, but...

DOWNLOAD