Completed
Last Updated: 13 Aug 2021 12:11 by ADMIN
Release Q3 2014
ADMIN
Danail Vasilev
Created on: 23 Jul 2014 08:27
Category: Button
Type: Bug Report
1
FIX OnClientClicked event of RadButton ButtonType="LinkButton" is not raised
For the time being the following workaround can be used:
		<script>
			function OnClientClicked() {
				alert('OnClientClicked');
			}

			function OnClientClicking() {
				alert('OnClientClicking');
			}

			function fixBtnClicked(sender, args) {
				sender._useModules = false;
			}

		</script>
		<telerik:RadButton ID="RadButton1" runat="server" ButtonType="LinkButton" Text="Click" OnClientLoad="fixBtnClicked" Target="_parent" NavigateUrl="http://www.google.com" OnClientClicked="OnClientClicked" OnClientClicking="OnClientClicking" />
0 comments