Completed
Last Updated: 11 Aug 2021 19:03 by ADMIN
ADMIN
Danail Vasilev
Created on: 25 Apr 2013 16:39
Category: Button
Type: Bug Report
0
FIX the triggering of the server-side OnClick event when the RadButton is clicked by pressing Enter key
Currently when the RadButton is focused and the Enter key is pressed, the server-side event OnClick is not triggered. When the Enter key is pressed again, the server-side event is executed.

The issue is reproduced when a dialog is opened in OnClientClicking event.

The workaround is to use

-Either the OnClientClicked event
-OR trigger the server click of the RadButton in the OnClientClicking event:
		<script type="text/javascript">
			function OnClientClicking1(sender, args) {

				alert("Client-click triggered");
				sender.click();
			}
		</script>
1 comment
Hee
Posted on: 30 May 2013 00:46
Is this issue fixed?