up vote 0 down vote favorite
share [g+] share [fb]

I need to perform an action on double click of a text box, but the onDblClick event does not seem to register when the text box is not editable (i.e greyed out). Is there something I can do to solve this ?

Best, Rohan

link|improve this question

feedback

2 Answers

How about applying the onDblClick event to the parent div your text box is in?

e.g.

<div ondblclick="someAction()"><input type="text" readonly="true" /></div>
link|improve this answer
That is great idea. Thanks! – Rohan Nov 4 '09 at 19:38
feedback
up vote 1 down vote accepted

Apparently ,

The legacy code was using the 'disabled' property of the element to toggle editability of the text box. So that also disables events on the text box.

textElement.disabled = true;

To fix this,

I used the 'readOnly' property of the element for the editability toggling needs and now it registers events.

textElement.readOnly = true;

Thanks for reading!

Rohan.

link|improve this answer
That makes sense. Glad you got it working. – kafuchau Nov 4 '09 at 22:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.