samedi 27 mai 2017

Show image in datatables codeigniter

sorry for my bad english, i want to show image in my table using datatables.

 var t = $("#mytable").dataTable({
                initComplete: function() {
                    var api = this.api();
                    $('#mytable_filter input')
                    .off('.DT')
                    .on('keyup.DT', function(e) {
                        if (e.keyCode == 13) {
                            api.search(this.value).draw();
                        }
                    });
                },
                oLanguage: {
                    sProcessing: "loading..."
                },
                processing: true,
                serverSide: true,
                ajax: {"url": "wisataadmincontroller/json", "type": "POST"},
                columns: [
                {
                    "data": "id_wisata",
                    "orderable": false
                },{"data": "nama_wisata"},{"data": "alamat_wisata"},{"data": "no_telp"},{"data": "kategori"},{"data": "longitude"},{"data": "latitude"},{"data": "gambar","render": function(data, type, row) {
                    return '<img src="'+data+'"style="height:100px;width:100px;" />';
                }},{"data": "like"},
                {
                    "data" : "action",
                    "orderable": false,
                    "className" : "text-center"
                }
                ],
                order: [[0, 'desc']],
                rowCallback: function(row, data, iDisplayIndex) {
                    var info = this.fnPagingInfo();
                    var page = info.iPage;
                    var length = info.iLength;
                    var index = page * length + (iDisplayIndex + 1);
                    $('td:eq(0)', row).html(index);
                }
            });
        });

and the result :the images are empty

the images are empty because the image source only contains the images file name, so how to use baseurl in datatables?




Aucun commentaire:

Enregistrer un commentaire