Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
レコードのリストを表示するためにjquery-bootgridを使用しています。
これらのレコードには画像もありますが、画像は行に表示されません。
画像を行で表示する方法を知っている人はいますか?
フォーマッタを使用してイメージ タグに変換できます。
$("#grid-data").bootgrid({ formatters: { "imageCol": function(column, row) { return "<img src='" + row.id + "' />"; } } });
ここで、「imageCol」は、画像への絶対パスを保持する列です。