Изменить столбец Datatable на HTML-форму - PullRequest
0 голосов
/ 06 июня 2018

Как преобразовать информацию о дате в кнопку в datatable.

$(function () {
    $('#table').DataTable({
        ajax: {
            "url": "https://api-sandbox.londontheatredirect.com/rest/v2/Events/" + showId + "/Performances",
        },
        columns: [
            { data: 'PerformanceId' },
            { data: 'PerformanceDate' }
        ]
    });
    /**/
});

1 Ответ

0 голосов
/ 06 июня 2018
$(function () {
$('#table').DataTable({
    ajax: {
        "url": "https://api-sandbox.londontheatredirect.com/rest/v2/Events/" + showId + "/Performances",
    },
    columns: [
        { data: 'PerformanceId' },
        { data: 'PerformanceDate' },

        /*Here the code how you render your html button, a tag or anything else*/
        {
           "render": function (data, type, row, meta)
           { return '<a href="your_url" class="btn btn-sm btn-info">Button name</a>'; }
         }
    ]
  });
/**/
});

Для лучшего понимания Прочитайте это

...