Kindly note that when using jquery UI draggable with Firefox v13.0.1, i am not able to edit the textboxes.
Sample code : jsfiddle sample
Is there a workaround for this issue.
jQuery: 1.7.1, jQuery UI: 1.8.16
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s because you’re calling
disableSelection()on all columns. This results in mouse clicks not being received by the<input>elements.Removing that call fixes your problem. You will find an updated fiddle here.