CommonJS module

FancyGrid is using an UMD module pattern as a result it has support for CommonJS.
The following example presumes you are using npm/bower to install FancyGrid.

Example


// Load FancyGrid
var Fancy = require('fancygrid');

// Generate the grid
new Fancy.Grid({
  //config
});

// Generate the form
new Fancy.Form({
  //config
});

// Generate the tabs
new Fancy.Tab({
  //config
});
`