View pictures or images inside Jquery DataTable

前端 未结 4 1253
南方客
南方客 2020-12-15 06:58

May I know if it is possible to put pictures or images into the rows of DataTables (http://datatables.net/) and how does one goes in doing it?

4条回答
  •  Happy的楠姐
    2020-12-15 07:46

    Asp.net core DataTables The following code retrieve the image from a folder in WWWroot and the path in the DB field ImagePath

    {
       "data": "ImagePath",
       "render": function (data) {
           return '';
           }
     }
    

提交回复
热议问题