How to add formula plugin

Congrats on releasing your pro version. I am evaluating it and porting my app to it. How do I enable the formula plugin. I am using angular and the ngHandsontable module.

Thanks

Pascal

Also it looks like the ngHandsontable module is still using an older version of handsontable 0.19. Would you be updating that module to depend on handsontable-pro soon

The Angular version has always been a bit behind the Vanilla one. We plan to update it asap (hopefully till the end of the month). As for the formula plugin, it has a lot of dependencies. Can you paste a link to some (not-working) demo on JSFiddle or Codepen so we could take a closer look at it?

I got it working the same way I did in prior version. I was just hoping that it was included. I am using ocLazyLoader to load the plugin and its dependencies when I need it. Here is a snippet.

    $ocLazyLoad.load ({
	serie: true,
	files: [
		'plugins/handsontable/numeral.js',
		'plugins/handsontable/md5.js',
		'plugins/handsontable/jstat.js',
		'plugins/handsontable/formula.js',
		'plugins/handsontable/parser.js',
		'plugins/handsontable/ruleJS.js',
		'plugins/handsontable/handsontable.formula.js',
	],
});

As for ngHandontable I changed my bower dependencies to handsontable instead of handsontable-pro

“handsontable”: "git@git.handsontable.com:handsontable/handsontable-pro.git#~1.0.0-beta3",

and that did the trick

Thanks