Last post Jan 04, 2012 04:18 AM by mayankpathakyours
Member
114 Points
172 Posts
Jan 03, 2012 05:09 AM|judejohn|LINK
I am using a radbutton with clientclick, which calls a javascript which returns true/false.
Below is the code,
<telerik:RadButton ID="btnRegister" runat="server" Text="Register" Skin="Sunset" OnClientClicked="return OnClientClicked" OnClick="btnRegister_Click1" ValidationGroup="grp1"> <Icon PrimaryIconUrl="Images/Registration.gif" PrimaryIconLeft="10px" PrimaryIconTop="5px" /> </telerik:RadButton> function OnClientClicked(sender, eventArgs) { var x = CheckPasswrd(); return x;}
When I put OnClientClicked="OnClientClicked", it's working.
But below code is not working
OnClientClicked="return OnClientClicked"
Plz help
Contributor
2184 Points
786 Posts
Jan 04, 2012 12:44 AM|mayankpathakyours|LINK
Hi there
try it like
OnClientClicked="return OnClientClicked();"
Jan 04, 2012 01:55 AM|judejohn|LINK
Hi,
Thanks for the reply.
But it's not working.
Jan 04, 2012 04:18 AM|mayankpathakyours|LINK
remove the parameters of your javascript function then let me know. If it still don't work then elaborate your problem what you actually want to do . Then i'll help you with jquery function.
Member
114 Points
172 Posts
TelerikRadButtonClientClick
Jan 03, 2012 05:09 AM|judejohn|LINK
I am using a radbutton with clientclick, which calls a javascript which returns true/false.
Below is the code,
When I put OnClientClicked="OnClientClicked", it's working.
But below code is not working
Plz help
Contributor
2184 Points
786 Posts
Re: TelerikRadButtonClientClick
Jan 04, 2012 12:44 AM|mayankpathakyours|LINK
Hi there
try it like
Member
114 Points
172 Posts
Re: TelerikRadButtonClientClick
Jan 04, 2012 01:55 AM|judejohn|LINK
Hi,
Thanks for the reply.
But it's not working.
Contributor
2184 Points
786 Posts
Re: TelerikRadButtonClientClick
Jan 04, 2012 04:18 AM|mayankpathakyours|LINK
remove the parameters of your javascript function then let me know. If it still don't work then elaborate your problem what you actually want to do . Then i'll help you with jquery function.