Is there any image zoom plugin complitable with jqgrid?
Does anyone had an experience?
I’ve tried nivozoom, bezoom, fancyzoom and imagepreview plugins but had no luck…
This my custom formatter:
$custom = 'function ImageFormatter(cellvalue, options, rowObject) {
var BigImage = cellvalue;
var BigImage = BigImage.replace("_t2.jpg", "_t1.jpg");
return"<a href=\'../../images/products/thumbs/"+ BigImage +"\' class=\'class_of_the_plugin\' title=\'Some Title\'><img src=\'../../images/products/thumbs/"+ cellvalue +"\' alt=\'" + cellvalue + "\'title=\'" + Buyuk + "\' align=\'center\' /></a>";
}';
The filenames and paths are ok. There is no problem with formatter. But the plugins not working anyway. I’ve tried also for mouseover plugins:
<a onclick="return false;" href="......
Any help? Any idea?
Cheers…
I think it’s because you overwrite cellvalue, try to cange your code to this:
It may solve the problem.