Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

314
Vistas
How to bind JSON data from ajax call to DataSource of pivot table webdatarocks

Here the data is not binding in the following code:

        var pivot = new WebDataRocks({
            container: "#wdr-component",
            toolbar: true,
            height: 395,
            report: {
                dataSource: {
                    dataSourceType: "json",
                    data: getData()
                },
                "slice": {
                    "rows": [
                        {
                            "uniqueName": "RLI_RAV_GRP_DES"
                        }
                    ],
                    "columns": [
                        {
                            "uniqueName": "LEVEL1"
                        },
                        {
                            "uniqueName": "LEVEL2"
                        }
                    ],
                    "measures": [
                        {
                            "uniqueName": "Q1",
                            "aggregation": "sum"
                        },
                        {
                            "uniqueName": "Q2",
                            "aggregation": "sum"
                        },
                        {
                            "uniqueName": "Q3",
                            "aggregation": "sum"
                        },
                        {
                            "uniqueName": "Q4",
                            "aggregation": "sum"
                        }
                    ]
                },
                options:
                {
                    grid: {
                        title: "Sales Report"
                    }
                }
            }
        });
    

    function getData() {
        $.ajax({
            type: "GET",
            url: "NACGSample.aspx/GetPivotReportList",
            contentType: "application/json; charset=utf-8",
            dataType: 'json',
            success: function (msg) {
                return JSON.parse(msg.d);
                //return msg.d; 
            },
            error: function (msg) { return alert(msg); }
        });
    }
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

The issue is that you can not return a value from an asynchronous call (AJAX request). The solution is to call a function inside your success: callback that passes the data when it is available.

Please check the following CodePen: https://codepen.io/webdatarocks/pen/eYErgGL?editors=1010

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda