Cant get focus on input element in edit mode

Hello,

I have used the last example in the following page with dhtmlxgrid 3.6 pro:
docs.dhtmlx.com/doku.php?id=dhtm … le_excells

Rendering is good but I can’t get focus in any input or select field. As soon as I click on it, I loose focus. I have tested in chrome and IE11, same behavior.

Is any init option can lead to this problem? I am pretty sure it can be quickly resolved but I don’t know how and I am under heavy pressure from my boss :slight_smile:

I found a solution.
It was a click in select or input field that was responsible of calling detach event.
I might have commented this line for some reason:
this.cell.childNodes[0].onclick=function(e){ (e||event).cancelBubble=true; };

Now, I understand it prevents detach event to be called from a click event.
I was pretty sure I tried this example without touching anything but now I am not so sure…