function fmtEditore(val,row){
return '<span class="easyui-tooltip" '
+'title="'+row.editor+'<br><span class=\'small\'>'
+'<a href=\'https://stat.ripe.net/widget/maxmind-geo-lite#w.resource='+row.editVIA.split('|')[0]+'\' target=\'ripe\'>[GeoIP]</a>'
+'<a href=\'https://stat.ripe.net/widget/whois#w.resource='+row.editVIA.split('|')[0]+'\' target=\'ripe\'>[WhoIS]</a>'
+'<a href=\'https://www.infobyip.com/?ip='+row.editVIA.split('|')[0]+'\' target=\'ripe\'>[InfoByIP]</a>'
+row.editVIA.split('|').join('<br>')+'</span>"'
+' data-options="hideEvent:\'none\''
+',onShow: function(){'
+'var t = $(this);' // blur
+'t.tooltip(\'tip\').focus().unbind().bind(\'mouseleave blur\',function(){t.tooltip(\'hide\')});'
+'}'
+'"'
+'>'+val+'</span>'
}
without 'blur' all work fine but tooltip didnt hide when select another row in datagrid.
with 'blur' tooltip work fine but user can`t do click on href : tooltip close before send call event to <a>
how to : <a> do click and tooltip hide when tooltip blur ?