You could make a javascript action that opens an URL and link that to the dblclick event.
Something perhaps like this ? :
|
Quellcode
|
1
2
3
4
5
6
|
<action name="openURL" type="Javascript"><![CDATA[
var URL = (args[1]);
window.open(URL); // or any other method you like to open a window/tab or redirect in the same window.
]]></action>
|