Editor is populated with the selected value upon Enter keypress and cell value changes when editor loses focus by tab or another Enter key.
This is normal behaviour. Please let know if you have better suggestion.
Hello, paramvir!
Thank you for reply and for your project! Its really great.
Sorry, my English is not so well, may be.
I forgot to specify that this behaivor reproduce only in IE (11 in my case).
You can see the video below:
https://yadi.sk/i/mQJC9t9Q-Kb_EAsequence again:
1. click to control by left mouse button;
2. press space to expand dropdown
3. select value by arrows and press enter
I'm only begginer in JS and not so good in it. But i found next way to fix it. I think its bad coding, but it helps me:
in pqgrid.min.js:
h.saveEditCell=function(a){
if(a.evt.type=='keydown' && a.evt.keyCode ==13 && a.evt.target instanceof HTMLSelectElement) {
a.evt.target.blur();
a.evt.target.focus();
}
var d=this.options,b=d.editModel;if(!b.indices)
...