Author Topic: export function not working  (Read 1835 times)

dtag1000

  • Pro Deluxe
  • Newbie
  • *
  • Posts: 12
    • View Profile
export function not working
« on: October 19, 2017, 07:29:35 am »
The AJAX call posts to new.php, but doesnt return anything
      javascript

Code: [Select]
<script>
    $(function () {
        function fillOptions(grid) {
            var column = grid.getColumn({ dataIndx: 'ShipCountry' });
            column.filter.options = grid.getData({ dataIndx: ['ShipCountry'] });
            column.filter.cache = null;
            grid.refreshHeader();
        }
        var colM = [
            { title: "ShipCountry", width: 120, dataIndx: "ShipCountry",
                filter: {
                    type: 'select',
                    prepend: { '': 'All Countries' },
                    valueIndx: 'ShipCountry',
                    labelIndx: 'ShipCountry',
                    condition: 'equal',
                    listeners: ['change']
                }
            },
            { title: "Customer Name", width: 130, dataIndx: "ContactName" },
            { title: "Freight", width: 120, format: '$##,###.00',
                summary: {
                    type: "sum"
                },
                dataType: "float", dataIndx: "Freight"
            },
            { title: "Shipping Via", width: 130, dataIndx: "ShipVia" },
            //{ title: "Shipped Date", width: 100, dataIndx: "ShippedDate", dataType: "date" },
            { title: "Shipping Address", width: 220, dataIndx: "ShipAddress" },
            { title: "Shipping City", width: 130, dataIndx: "ShipCity" }
        ];
        var dataModel = {
            location: "remote",
            dataType: "JSON",
            method: "GET",
            url: "data.json"
            //url: "/pro/orders/get",//for ASP.NET
            //url: "orders.php",//for PHP
        };
        var groupModel = {
            on: true,
            dataIndx: ['ShipCountry'],
            collapsed: [true],
            title: [
                "{0} ({1})",
                "{0} - {1}"
            ]
        };
        var obj = {
            height: 500,
            toolbar: {
                items: [{
                    type: 'checkbox',
                    label: 'zip',
                    attr: 'id="export_zip"'
                },
                {
                    type: 'select',
                    label: 'Format: ',               
                    attr: 'id="export_format"',
                    options: [{ xlsx: 'Excel', csv: 'Csv', htm: 'Html', json: 'Json'}]
                },
                {
                    type: 'button',
                    label: "Export",
                    icon: 'ui-icon-arrowthickstop-1-s',
                    listener: function () {
                        this.exportData({
                            url: "new.php",
                            format: $("#export_format").val(),
                            zip: $("#export_zip").prop("checked"),
                            render: true
                        });
                    }
                }]
            },
            dataModel: dataModel,
            scrollModel: { autoFit: true },
            colModel: colM,
            numberCell: { show: false },
            filterModel: { on: true, header: true, type: "local" },
            selectionModel: { type: 'cell' },
            groupModel: groupModel,
            load: function (evt, ui) {
                //options for ShipCountry filter.   
                fillOptions(grid);
            },
            showTitle: false,
            resizable: true,
            virtualX: true,
            virtualY: true,
            hwrap: false,
            wrap: false
        };
        var grid = pq.grid("#grid_export", obj);

    });
[/tt][/tt][/tt]

      PHP
Code: [Select]
[tt]if (isset($_POST["pq_data"]) && isset($_POST["pq_ext"]))
{
    $pq_ext = $_POST["pq_ext"];
    $ext = array("csv", "htm", "json", "xlsx", "zip");
    if (in_array($pq_ext, $ext))
    {               
        session_start();
        $data = $_POST['pq_data'];
        $pq_decode = $_POST["pq_decode"];
        if( $pq_decode === "true" ){           
            $data = base64_decode($data);
        }
        $_SESSION['data'] = $data;
        $filename = $_POST['pq_filename']. "." . $pq_ext;
        $_SESSION['filename'] = $filename;
        echo $filename;
    }
}
else if(isset($_GET["pq_filename"]))
{
    $filename = $_GET["pq_filename"];
    session_start();     
    if ($filename == $_SESSION["filename"] )
    {               
        if (isset($_SESSION['data'])) {
            $data = $_SESSION['data'];
            $_SESSION['data']=null;

            header('Content-Disposition: attachment; filename="'.$filename.'"');
            header("Content-Type: application/octet-stream");
            header('Content-Length: ' . strlen($data));
            header('Connection: close');           
            echo $data;
            exit;
        }   
    }
}

[/tt]
« Last Edit: October 19, 2017, 07:32:15 am by dtag1000 »

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6296
    • View Profile
Re: export function not working
« Reply #1 on: October 19, 2017, 03:25:56 pm »
You should be able to do step by step remote debugging of your remote script.

If not, please use Chrome browser, open the developer tools -> network tab -> XHR -> Response, click on Export button in the grid toolbar and check the response as shown in the screenshot.

Please share your screenshot.