Files
datahub/example-quickstart.markdown
Rufus Pollock a2df2955f7 [doc/example-quickstart,doc/library][m]: most of a quickstart example plus refactor library page to reflect this and our plans.
* example covers creating a dataset and displaying a grid
* refactor library page to remove examples (will be separate) and list a set of examples we hope to have (most not yet written)
2012-05-13 10:19:40 +01:00

3.7 KiB

layout, title, recline-deps
layout title recline-deps
container Library - Example - Quickstart true

Recline Quickstart Guide

This step-by-step guide will quickly get you started with Recline basics, including creating a dataset from local data and setting up a data grid to display this data.

Preparing your page

Before writing any code with Recline, you need to do the following preparation steps on your page:

  1. Download ReclineJS and relevant dependencies.
  2. Include the relevant CSS in the head section of your document: {% highlight html %}
{% endhighlight %}
  1. Include the relevant Javascript files somewhere on the page (preferably before body close tag): {% highlight html %}
<script type="text/javascript" src="vendor/jquery/1.7.1/jquery.js"></script> <script type="text/javascript" src="vendor/underscore/1.1.6/underscore.js"></script> <script type="text/javascript" src="vendor/backbone/0.5.1/backbone.js"></script> <script type="text/javascript" src="vendor/jquery.mustache.js"></script> <script type="text/javascript" src="recline.js"></script>{% endhighlight %}
  1. Create a div to hold the Recline view(s): {% highlight html %}
    {% endhighlight %}

You're now ready to start working with Recline.

Creating a Dataset

We are going to be working with the following set of data:

{% highlight javascript %} var data = [ {id: 0, x: 1, y: 2, z: 3, country: 'UK', label: 'first'}, {id: 1, x: 2, y: 4, z: 6, country: 'UK', label: 'second'}, {id: 2, x: 3, y: 6, z: 9, country: 'US', label: 'third'} ]; {% endhighlight %}

Here we have 3 documents / rows each of which is a javascript object containing keys and values (note that all values here are 'simple' but there is no reason you cannot have full objects as values.

We can now create a recline Dataset object (and memory backend) from this raw data:

{% highlight javascript %} var dataset = recline.Backend.createDataset(data); {% endhighlight %}

Note that behind the scenes Recline will create a Memory backend for this dataset as in Recline every dataset object must have a backend from which it can push and pull data. In the case of in-memory data this is a little artificial since all the data is available locally but this makes more sense for situations where one is connecting to a remote data source (and one which may contain a lot of data).

Setting up the Grid

Let's create a data grid view to display the dataset we have just created, binding the view to the <div id="recline-grid"></div> we created earlier:

{% highlight javascript %} var grid = new recline.View.Grid({ model: dataset, el: $('#recline-grid') }); grid.render(); {% endhighlight %}

And hey presto:

 
<script type="text/javascript"> var data = [ {id: 0, x: 1, y: 2, z: 3, country: 'UK', label: 'first'} , {id: 1, x: 2, y: 4, z: 6, country: 'UK', label: 'second'} , {id: 2, x: 3, y: 6, z: 9, country: 'US', label: 'third'} ]; var dataset = recline.Backend.createDataset(data); var $el = $('#recline-grid'); var grid = new recline.View.Grid({ model: dataset, }); $el.append(grid.el); grid.render(); </script>