Current filter:
                                You should refresh the page.
                                0
                                  • This ticket is based on the discussion from ticket B223037 (B223037)
                                    ===================================================

                                    Accidentally, IE 9 receives incorrect mouse button codes (e.g. the left button had ID=5 instead of 1). As a result, IE fails to detect a correct button and left clicks for our editors are not handled as left clicks:

                                    	
                                    [JScript]
                                    function _aspxGetIsLeftButtonPressed(evt){ if(ASPxClientTouchUI.isTouchEvent(evt)) return true; evt = _aspxGetEvent(evt); if(!evt) return false; if(__aspxIE) return evt.button == 1; // <<<< returned "false" here ...

                                    Other browsers do not sum mouse button codes and do not suffer from this problem.

                                You must  log in  or  register  to leave an answer

                                Is your intention to post an answer to your own question?

                                • If so, then proceed.
                                • If you simply wanted to post additional information, ask for further clarification, or to just say "Thanks!", please click Leave a Comment.
                                • If you wish to edit your original question, please use the Edit button in the Toolbox at the top right corner of that entry.