I have 4 tabs in my wizard loaded in user controls. On the first tab, based on a selection, I want to disable the next button to stop the user from going any further.
How can I achieve that?
3 Answers, 1 is accepted
0
Rumen
Telerik team
answered on 01 Sep 2016, 06:51 AM
Hi,
You can use the set_enabled(false) client-side method to disable the desired tab
<script type="text/javascript">
function OnClientButtonClicking(sender, args) {
if (args.get_command() === Telerik.Web.UI.WizardCommand.Next) {
I have my code in a user control. The tab page has a radio button and on selection of one of the radio buttons, I want to stop the user from moving forward. I have the clientclicking event in my aspx page but how do I check the condition from the user control ?
0
Rumen
Telerik team
answered on 02 Sep 2016, 09:36 AM
Hi,
I'm not sure about your exact code, but the provided solutions in these KB articles should help: