I want to use a control like below in my web project (textbox that is editable when double clicked for example). Some suggestions?
Regards.
I want to use a control like below in my web project (textbox that is editable when double clicked for example). Some suggestions?
Regards.
I found "contenteditable" for div (or other html control).
<div contenteditable="true">This is an editable div.</div>
http://www.w3schools.com/tags/att_global_contenteditable.asp
Thanks