I try to add image-link to my grid. I use MySQL tables and get.php for XML data.
this is my image-link cell:
print("
./img/ejes20.png^show picture^javascript:loadImage()^_self
\n");
when I click on the image, in firefox does not call the function, HOWEVER if it works in chrome.
For other example:
print("
./img/ejes20.png^show picture^javascript:alert(“hi”)^_self
\n");
In the other case if a call alert instead of a function created by me, what happens is the following, in firefox shows the alert but it open a new tab. and chrome work properly.
Am I doing something wrong or will be a browser incompatibility?