i want to show images from database in bootgrid table,but i really don't know where to put it,so what should i do ? how to display image from database to my bootgrid table ?.
this is my sample code
<table id="product_data" class="table table-bordered table-striped">
<thead>
<tr>
<th data-column-id="product_id" data-type="numeric">ID</th>
<th data-column-id="product_name">Nama Produk</th>
<th data-column-id="gambar">Gambar</th>
<th data-column-id="category_name">Nama Kategori</th>
<th data-column-id="product_price">Harga</th>
<th data-column-id="commands" data-formatter="image" data-sortable="false">Gambar</th> <!-- bootgrid image table header -->
<th data-column-id="commands" data-formatter="commands" data-sortable="false">Aksi</th>
</tr>
</thead>
</table>