Author Topic: Angular cannot gt working  (Read 3116 times)

garyg

  • Newbie
  • *
  • Posts: 2
    • View Profile
Angular cannot gt working
« on: August 05, 2016, 06:32:00 pm »
Hi
  I am trying to get angular working. It goes to debug automatically.

   <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
    <link href="paramquery-3.3.0/pqgrid.dev.css" rel="stylesheet" />
    <link href="paramquery-3.3.0/pqgrid.ui.dev.css" rel="stylesheet" />
    <link href="paramquery-3.3.0/themes/steelblue/pqgrid.css" rel="stylesheet" />
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
    <script src="paramquery-3.3.0/pqgrid.dev.js"></script>
    <script language="javascript">
        (function () {
            var data = [
                { rank: 1, company: 'Exxon Mobil', revenues: 339938.0, profits: 36130.0 },
                { rank: 2, company: 'Wal-Mart Stores', revenues: 315654.0, profits: 11231.0 },
                { rank: 3, company: 'Royal Dutch Shell', revenues: 306731.0, profits: 25311.0 },
                { rank: 4, company: 'BP', revenues: 267600.0, profits: 22341.0 },
                { rank: 5, company: 'General Motors', revenues: 192604.0, profits: -10567.0 },
                { rank: 6, company: 'Chevron', revenues: 189481.0, profits: 14099.0 },
                { rank: 7, company: 'DaimlerChrysler', revenues: 186106.3, profits: 3536.3 },
                { rank: 8, company: 'Toyota Motor', revenues: 185805.0, profits: 12119.6 },
                { rank: 9, company: 'Ford Motor', revenues: 177210.0, profits: 2024.0 },
                { rank: 10, company: 'ConocoPhillips', revenues: 166683.0, profits: 13529.0 },
                { rank: 11, company: 'General Electric', revenues: 157153.0, profits: 16353.0 },
                { rank: 12, company: 'Total', revenues: 152360.7, profits: 15250.0 },
                { rank: 13, company: 'ING Group', revenues: 138235.3, profits: 8958.9 },
                { rank: 14, company: 'Citigroup', revenues: 131045.0, profits: 24589.0 },
                { rank: 15, company: 'AXA', revenues: 129839.2, profits: 5186.5 },
                { rank: 16, company: 'Allianz', revenues: 121406.0, profits: 5442.4 },
                { rank: 17, company: 'Volkswagen', revenues: 118376.6, profits: 1391.7 },
                { rank: 18, company: 'Fortis', revenues: 112351.4, profits: 4896.3 },
                { rank: 19, company: 'Crédit Agricole', revenues: 110764.6, profits: 7434.3 },
                { rank: 20, company: 'American Intl. Group', revenues: 108905.0, profits: 10477.0 }
            ];

            var obj = {
                width: "80%",
                height: 400,
                colModel: [
                    {
                        title: "", align: 'center',
                        template: '<button class="btn-primary btn" ng-click="app.showMe(ri, rd)">Click Me</button>'
                    },
                    {
                        title: "Company", dataIndx: "company",
                        template: '<span ng-class="ri%2==0?\'bold_cls\':\'\'">{{rd.company}}</span>'
                    },
                    { title: "Revenues", dataType: "float", dataIndx: "revenues", template: '{{rd.revenues|currency}}' },
                    { title: "Profits", dataType: "float", dataIndx: "profits", template: '{{rd.profits|currency}}' }
                ],
                resizable: true,
                title: "Angularjs grid",
                scrollModel: { autoFit: true },
                dataModel: { data: data }
            };

            angular.module('myApp', ['pq.grid']).
            controller('myCtrl', function ($scope) {
                $scope.showMe = function (ri, rd) {
                    alert("rowIndx: " + ri + ", company: " + rd.company);
                }
                $scope.gridOptions = obj;
            });
        })();
    </script>
</head>
<body>
    <div ng-controller="myCtrl" ng-app="myApp">
        <div style="margin: auto;" pq-grid="gridOptions"></div>
    </div>

</body>

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6260
    • View Profile
Re: Angular cannot gt working
« Reply #1 on: August 08, 2016, 03:02:32 pm »
I don't see ng.pqgrid.min.js file in your scripts.

Please re download the SDK from evaluation page and include the missing script.

For more info, please check http://angularjsgrid.com/

garyg

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: Angular Material cannot get working -
« Reply #2 on: August 08, 2016, 09:50:53 pm »
I was able to get that working. However I cannot get Angular material to work as well.

Gary

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6260
    • View Profile
Re: Angular cannot gt working
« Reply #3 on: August 08, 2016, 10:00:18 pm »
You need to re download the SDK because Angularjs grid was released only yesterday. Please also refer to the new updated documentation.

gridOptions is passed through options attribute.

<pq-grid options="gridOptions" ></pq-grid>