problem with IE8 and second keystroke in a cell
Have anyone come across this issue before?
Grid Version: 2.5.3
Problem:
The grid doesn't recognize the second keystroke in IE8. It also works fine if the user types in more than 2 char. It works fine in Firefox.
ie: If I type 10 -> 1; 23 -> 2; 45 -> 4; etc.
I've used the following code to track the problem:
grid.onCellTextChanged = function(text, column, row){
alert(text);
}
The results as I type 123 are as follows
1 char typed -> 1
2 char typed -> no alert
3 char typed -> 123
I will have to test this on IE7.
If anyone knows why IE8 is causing this issue, please let me know.
Grid Version: 2.5.3
Problem:
The grid doesn't recognize the second keystroke in IE8. It also works fine if the user types in more than 2 char. It works fine in Firefox.
ie: If I type 10 -> 1; 23 -> 2; 45 -> 4; etc.
I've used the following code to track the problem:
grid.onCellTextChanged = function(text, column, row){
alert(text);
}
The results as I type 123 are as follows
1 char typed -> 1
2 char typed -> no alert
3 char typed -> 123
I will have to test this on IE7.
If anyone knows why IE8 is causing this issue, please let me know.
Xay Moua
June 2,