Add fields in DevExpress Pivot using AngularJS

I'm looking at this template to build a web application: https://js.devexpress.com/Demos/WidgetsGallery/Demo/PivotGrid/FieldChooser/AngularJS/Light/

In the example there are static data. I have to retrieve them from the server. So, I wrote this:

$scope.testData = [];
$scope.pivotGridDataSource = new DevExpress.data.PivotGridDataSource({
   fields: [{
     caption: "Nome",
     dataField: "fullName",
     area: "row"
    }, {
     caption: "Country",
     dataField: "country",
    area: "column"
  }, {
    caption: "Count",
    dataField: "countOne",
    dataType: "number",
    summaryType: "sum",
    area: "data"
  }],
     store: $scope.testData
  });

  $scope.pivotGridOptions = {
     allowSortingBySummary: true,
     allowSorting: true,
     allowFiltering: true,
     showBorders: true,
     dataSource: $scope.pivotGridDataSource,
     fieldChooser: {
        enabled: false
     }
   },

   $scope.fieldChooserOptions = {
      dataSource: $scope.pivotGridDataSource,
         texts: {
            allFields: "All",
            columnFields: "Columns",
            dataFields: "Data",
            rowFields: "Rows",
            filterFields: "Filter"
           },
          width: 400,
          height: 400,
          bindingOptions: {
             layout: "layout"
          }
      };

  // Now I call the server to retrieve data
  $scope.getTestData = () => {
     $scope.testData.length = 0;
     result.forEach(e => {
         $scope.testData.push(e);
     );
     $scope.pivotGridDataSource.reload();
  }

  $scope.getTestData();

The problem is that when the data are loaded, in the Fields below it shows just the fields written at the beginning (so the name, the count and the country). But I saw in the demo that it should be display ALL parameters of the object. For example, if the object is so structured:

{ "name": "Test1", "country": "Germany", "creationDate": "xxx", "surname": "yyy" }

So, I expect that in the fields there should be ALL parameters, so name, country, creationDate, surname. So, I did this at the beginning: I changed $scope.testData = [] into:

$scope.testData = [{ "name": "", "country": "", "creationDate": "", "surname": "" }]

so the component will preparare all fields. And this works. But what if the server gives me back an Object that has another parameters? How can I display them? I tried so after the calling and before the reload():

    let fields = $scope.pivotGridDataSource.fields();
    let newField = {
        llowExpandAll: false,
        allowFiltering: true,
        allowSorting: true,
        allowSortingBySummary: true,
        caption: "This is a new field",
        dataField: "newField",
        dataType: "string",
        displayFolder: "",
        index: fields.length
    }

    $scope.pivotGridDataSource.fields().push(newField);
    $scope.pivotGridDataSource.reload();

But it doesn't work yet. Worse, it does not even initialize the Pivot.


The fieldChooser uses the store fields, in this case $scope.testData fields, in your code I see your store is first declared (as null or with some format as you described) and then you have a function to fill it.

I don't know how your code looks and why you create your store that way, but that is basically your problem (the flow).

In the sample code the flow is:

  • Store with data (static in this case)
  • PivotGridDataSource
  • FieldChooser
  • In your code the flow is:

  • Store (empty)
  • PivotGridDataSource
  • FieldChooser
  • Store (fill) --> at this point your FieldChooser has been initialized with the fields of the empty version of your store so not much to do (in Jquery you could re-create your object, you dan do it using Jquery within AngularJs see a simple code sample here and below)

    $('#chartContainer').dxChart('instance').dispose(); $('#chartContainer').dxPieChart({ ... });

  • To avoid all of this you can just use the DevExpress.data.CustomStore and your flow will be basically identical to the demo.

    链接地址: http://www.djcxy.com/p/31118.html

    上一篇: 如何在devextreme Treelist控件中启用导出选项

    下一篇: 使用AngularJS在DevExpress Pivot中添加字段