hi,

by default, the sortable catches all the click events. so if you want to
edit them, you can assign a onclick event which in turn calls focus().

here is the code:

$("input").click(
 function()
      {
        $(this).focus()
      }
 );

avi



--
------------------------------------------------------
Visit me at http://jodhpuriguy.com
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to