We've run into some situations where a right click on a particular Telerik control behaves in the way we expect only a left click to behave.
For example, we have a Command Bar with a bunch of buttons. If you right click one of the buttons, the Click event occurs and our application ends up doing the logic associated with the button. End users are confused because they don't expect a right-click to trigger a button click. The same goes for the middle click. It seems like the buttons in a command bar should only raise the Click event if they are clicked with the left mouse (assuming right-handed mouse). I'm not sure if the command bar supports keyboard navigation....but if so, then pressing the spacebar with the button focused should also trigger the Click event.
For normal buttons, this seems to work as I expect (right or middle click does nothing, spacebar triggers click event, etc.). I also found this old forum thread that talked about similar issues that I think have been fixed: http://www.telerik.com/forums/you-can-right-click-to-click-button
There are two other places where I've noticed right click works and I think those are bugs as well.
1. Checkboxes can be checked/unchecked by right/middle clicking on them (or clicking on the label). That seems wrong to me. The checkboxes inside of tree views also have this problem. However, checkboxes inside grids don't seem to have this problem.
2. I can open dropdowns by right/middle clicking the little down arrow on the right edge of the dropdown. That seems wrong.
Finally, I've noticed that buttons show the 'clicked' state on mouse down of the middle button. That doesn't seem right although I'm not 100% about that. The mouse down state also appears for right click if I right click enough time. This happens even on regular buttons.
Hopefully my explanations of the various issues I'm seeing make sense. I can see all of these problems in the demos included with the installation so I don't think any of them are issues with my code.