I was able to save an image as blob type in MySQL and now I want to display it using the struts2 jquery grid widget. I used the edittype="image" but it didn't work. It only displays some string. Any suggestion on which edittype i should use?
here is my jquery grid:
<sjg:grid
id="testresulttable1"
caption="Test Result Summary"
dataType="json"
href="%{testtrsurl}"
pager="true"
gridModel="gridTRSModel"
rowList="10,15,20"
rowNum="15"
viewrecords="true"
viewsortcols="[true, 'horizontal', true]"
resizable="true"
multiselect="false"
loadonce="false"
>
<sjg:gridColumn
name="screenshot"
index="screenshot"
title="screenshot"
sortable="true"
edittype="image"
/>
</sjg:grid>
thanks in advance for your help.