无法使用带有handsontable + angularJs的RuleJS(公式支持)

时间:2015-05-15 11:14:28

标签: angularjs handsontable

我无法使用设置指针+ angularjs的RuleJS(公式支持)。

在加载角度数据时,只有公式支持功能根本不起作用。没有角度的东西(在jquery中)。

我无法使用设置指针+ angularjs的RuleJS(公式支持)。

在加载角度数据时,只有公式支持功能根本不起作用。 同样的事情是没有角度的工作(在jquery中)。 我想知道是否有任何特定的文件我需要添加角度?

  <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>

1 个答案:

答案 0 :(得分:0)

无论如何我用不同的方式创建了表格并且开始正常工作。

 <div id="HTableGrid" handsontable settings="settings">