using json receive No data available in table

using json receive No data available in table

jjcfidalgo@gmail.comjjcfidalgo@gmail.com Posts: 11Questions: 8Answers: 0
edited May 2022 in Free community support

in asp.net i have a method to get values from datatable and i get this result
{"data":[{"no":"3110001","nome":"2M - COMÉRCIO E SERVIÇOS DE ELETRICIDADE, LDA."},
{"no":"3110001","nome":"2M - COMÉRCIO E SERVIÇOS DE ELETRICIDADE, LDA."},
{"no":"3110001","nome":"2M - COMÉRCIO E SERVIÇOS DE ELETRICIDADE, LDA."},
{"no":"3110001","nome":"2M - COMÉRCIO E SERVIÇOS DE ELETRICIDADE, LDA."}]}

I created datatables

var table = $('#docvencidos').DataTable({
            "ajax": {
                type: "POST",
                url: "WebForm4.aspx/getdocs",
                "dataSrc": "",
                contentType: "application/json; charset=utf-8",
                dataType: 'json'
            },
 
            'columns': [

                {'data': 'no' },
                {'data': 'nome'},
            ],
            'select': {
                'style': 'multi'
            },
            'order': [[1, 'asc']]
        });

Why i receive a message in table "No data availiable in table"

This question has an accepted answers - jump to answer

Answers

Sign In or Register to comment.