Open GoogleCodeExporter opened 9 years ago
I just "fixed" this by altering the inputNameAndClass method of the
InlineEditor object by checking for tabIndex of the dom object passed in and
adding it to the output of that method.
Now TAB forward works, but curiously shift-TAB (backwards) is not working.
Original comment by jamg...@gmail.com
on 5 Nov 2012 at 6:21
Would you mind to share your changes? Moving forward with a tab to the next
field is exactly what I'd need.
Original comment by hostinsp...@gmail.com
on 5 Oct 2014 at 3:47
inputNameAndClass: function() {
var t = $(this.dom).attr('tabindex');
if(t)
return ' name="inplace_value" class="inplace_field" tabindex="'+t+'" ';
else
return ' name="inplace_value" class="inplace_field" ';
},
Original comment by jamg...@gmail.com
on 5 Oct 2014 at 5:56
Original issue reported on code.google.com by
jamg...@gmail.com
on 5 Nov 2012 at 5:29