Not able to use RuleJS (formula support) with handsontable + angularJs -
i not able use rulejs (formula support) setup handsontable + angularjs.
in angular data loaded formula support functionality not working @ all.same thing working without angular ( in jquery).
i not able use rulejs (formula support) setup handsontable + angularjs.
in angular data loaded formula support functionality not working @ all. same thing working without angular ( in jquery). wondering if there specific file need add angular ?
code
<hot-table settings="{settings }" rowheaders="true" minsparerows="minsparerows" datarows="data1" height="300" width="700"> </hot-table> <script> var app = angular.module("app", ['nghandsontable']); app.controller('maincontroller', function ($scope, $http, $timeout) { debugger $scope.data1 = [ ['=$b$2', "maserati", "mazda", "mercedes", "mini", "=a$1"], [2009, 0, 2941, 4303, 354, 5814], [2010, 5, 2905, 2867, '=sum(a4,2,3)', '=$b1'], [2011, 4, 2517, 4822, 552, 6127], [2012, '=sum(a2:a5)', '=sum(b5,e3)', '=a2/b2', 12, 4151] ]; $scope.settings = ({ data: data1, minsparerows: 1, colheaders: true, rowheaders: true, contextmenu: true, manualcolumnresize: true, formulas: true }); }); </script>
anyways created table different way , started working fine.
<div id="htablegrid" handsontable settings="settings">
Comments
Post a Comment