Display Picture
Display Picture
vietnguyen
Posts: 2Questions: 0Answers: 0
I can't display image, pls help
google.script.run.withSuccessHandler(dataTable).getData() function dataTable(data){ $('#example').DataTable({ data:data, searching:false, destroy:true, columns: [ {'title': 'ID'}, {'title': 'NỘI DUNG'}, {'title': 'GHI CHÚ'}, {'title': 'HÌNH ẢNH', render: function (data, type, row, meta) { if (type === "display") { data =' '; } return data; }, }, ] }); }
Replies
Can you show me what your
data
array contains when populating the table please?Even better, if you could give me a link to a page showing the issue I'll be able to diagnose it directly.
Allan