Show Image in DataTable asp.net MVC

0

I'm having trouble displaying an Image in the datatable in my application. I get the name of the image but it does not display.

 "columns": [
                    { "data": "Id", "name": "Id", "autoWidth": true },
                    { "data": "Name", "name": "Name", "autoWidth": true },
                    { "data": "CPF", "name": "CPF", "autoWidth": true },
                    { "data": "City", "title": "City", "name": "ContactName", "autoWidth": true },
                    { "data": "Adress", "name": "Adress", "autoWidth": true },
                    { "data": "OcupnationName", "name": "OcupnationName", "autoWidth": true },
                    {
                        
                        "render": function (data, type, full, meta) {

                            return '<img src="'+ full.Picture +'" style="width:150px; height:150px;" />';
                           
                        }
                
                    },
                    {
                        "render": function (data, type, full, meta) {
                            return '<a class="btn btn-info" href="/Employee/Details/' + full.Id + '">Info</a>';
                        }
                    },
                    {
                        "render": function (data, type, full, meta) {
                            return '<a class="btn btn-info" href="/Employee/AddOrEdit/' + full.Id + '">Edit</a>';
                        }
                    },

                    {
                        data: null, render: function (data, type, row) {
                            return "<a href='#' class='btn btn-danger' onclick=DeleteData('" + row.Id + "'); >Delete</a>";
                        }
                    },

                ]

    
asked by anonymous 08.04.2018 / 16:01

0 answers