I need to double-click for inline editing. I am facing issue if the object is already populated and is a hyperlink. The moment i use double-click, the link opens, instead of field in edit mode.
Here is the HTML code
<td class="dataCol ">
<span id="cust_contact">
<span ondblclick="if (window.sfPage && window.sfPage.hasRun)
sfPage.dblClickField(event,this);" onmouseout="if (window.sfPage && window.sfPage.hasRun) sfPage.mouseOutField(event, this);" onclick="if (window.sfPage && window.sfPage.hasRun) sfPage.clickField(event, this);" onmouseover="if (window.sfPage && window.sfPage.hasRun) sfPage.mouseOverField(event, this);" class="inlineEditWrite" style="display:block" id="cust_contact_ilecell">
<span id="cust_contact_ileinner">
<a href="https://XXXXXXXX" id="lookup003" onblur="LookupHoverDetail.getHover('lookup003').hide();" onfocus="LookupHoverDetail.getHover('lookup003', '/003/m?retURL=%2Fapr%2FForceOrderInLineEditPage%3Fid%3Da1bWzo%26sf.override%3D1&isAjaxRequest=1&nocache=1344333834626').show();" onmouseout="LookupHoverDetail.getHover('lookup003').hide();" onmouseover="LookupHoverDetail.getHover('lookup003', '/003/m?retURL=%2Fapr%2FForceOrderInLineEditPage%3Fid%3Da1bWzo%26sf.override%3D1&isAjaxRequest=1&nocache=1344333834626').show();">
Joey Tribbiani</a>
</span></span></span></td>
On mouseover it display an image which can be used to click. But I am unable to find locator for the same, as it is tied to the 'class'.
Thanks