tags:

views:

1570

answers:

2

I'm new to jQGrid. Is it possible to display hyperlinks in the columns of jqGrid? In our UI, we need to display Edit and Delete links next to each row of the table. is it possible with jqGrid?

A: 

Yes it is. Send your JSON response back containing the link (from my example on jqgrid.com). For example:

{"page":"1","total":4,"records":"22","rows":[{"id":1,"cell":["<a href='linkhere'>Quantum of Solace</a>","Marc Forster","2008","Daniel Craig","200]}]}
Rio
+2  A: 

Have a look at : this. There are two predefined format types which may be usefull for you - link and showlink.

Rio's solution should work too but using formatters is much better (in my oppinion)

Best regards