Paging et columnResizing ne fonctionnent pas dans ui-grid v3.0.0-rc.11

Je ne peux pas sembler obtenir la pagination ou la colonne de re-dimensionnement de travail dans la nouvelle ngGrid (interface utilisateur-Réseau) rc construire v3.0.0-rc.11. Il doit être vraiment simple selon cet exemple: http://ui-grid.info/docs/#/tutorial/401_AllFeatures

Pour mon div principale, si je fais ceci:

<div ui-grid="productGridOptions"  ui-grid-resize-columns class="uiGridProducts">

et dans mon contrôleur ce faire:

$scope.productGridOptions={};       


         $scope.productGridOptions.enableColumnResizing = true;
         $scope.productGridOptions.enableFiltering = false;
         $scope.productGridOptions.enablePaging = true;

         $scope.productGridOptions.pagingOptions = {
                    pageSizes: [250, 500, 1000],
                    pageSize: 250,
                    currentPage: 1
         };


         $scope.productGridOptions.rowIdentity = function(row) {
            return row.id;
          };

         $scope.productGridOptions.getRowIdentity = function(row) {
            return row.id;
         };

         $scope.productGridOptions.data = 'products';

        //The options for the data table    
        $scope.productGridOptions.columnDefs = [
                  { name:'ID', field: 'id' },
                  { name:'Product', field: 'productName' },
                  { name:'Active Ing.', field: 'activeIngredients'},
                  { name:'Comments', field: 'comments' }
                ];

        prProductService.getProducts().then(function(products) {
            $scope.products = products;



        });

Ni de pagination ou de la colonne de redimensionnement de travail. Il n'y a pas de pagination des exemples sur l'interface utilisateur-réseau tutoriel, supposons qu'il est semblable à ngGrid, mais sa colonne de redimensionnement qui j'ai vraiment besoin en ce moment.

Ce qui concerne

je

source d'informationauteur smackenzie | 2014-10-03