I'm trying to add an image to a row in a grid without using a row template. You can see how I'm trying to do this below:
The result is this:
showing up instead of the image...
Is it possible to acheive without a row template?
columns: [{ field: "Title", title: "Title", format: "<img src='/Images/${ SKU }_small.jpg' alt='${ Title }' />" }, { field: "OFLC", title: "Rating", width: 55 }, { field: "Price", title: "Price", template: "$${ Price }" }]The result is this:
<img src='/Images/${ SKU }_small.jpg' alt='${ Title }' />Is it possible to acheive without a row template?