views:

109

answers:

1

Please, can anyone tell me how to use jqGrid? I want to do edit, add & delete functionality. Also I want to show an image in the grid

Please tell me, what can I do, and how can I do?

+1  A: 

All the information you need about jqGrid may be found on the jqGrid sites themselves (as well as stack overflow, of course :)

As far as showing an image in a grid row, this post has a nice summary:

Return the HTML element as your grid column's data. Do not use ' or " for the src, it will not work properly. The field should be like this:

<img src=../images/my_image.jpg>
Justin Ethier