I want a image column in my jQGrid,I have used a formatter,but doesnot work,please give me the solution for this.
my code is as follows:
jQuery(docum
A simple solution could be made directly from the query:
select idres, 'HTML-IMG-SRC=images/tick_' || reserved || '.png' as reserved, indate, outdate from table; -- querying postgres
Where reserved is 0 or 1 and reflects in the image file name "tick_1.png" or "tick_0.png" depending on the field's value of 'reserved'
Hope it helps