6 Answers, 1 is accepted
0
0
Jota
Top achievements
Rank 1
answered on 10 Apr 2015, 06:47 AM
I found a solution working on codeBehind;
in aspx:
<
telerik:RadWizardStep
runat
=
"server"
ID
=
"stepFinal"
Title
=
"Resum"
StepType
=
"Step"
>
in c#:
if verification is correct:
this
.stepFinal.StepType = RadWizardStepType.Finish;
Thanks!
this
.stepFinal.StepType = RadWizardStepType.Finish;
0
Matthew Bishop
Top achievements
Rank 1
answered on 30 Aug 2015, 01:44 PM
Just make it simple and stupid, use a CSS rule:
.rwzFinish {
display
:
none
!important
;
}
0
Frank
Top achievements
Rank 1
answered on 14 Dec 2015, 04:26 PM
Thanks, Matthew.
It was a pain in the ass finding a solution for this actually simple task.
Telerik...??
0
Hi,
Yes indeed unfortunately there is no built in functionality for such issue yet we have exposed all the CSS classes of the control in this article so if some additional styling or jQuery action is needed it is much easier to find the desired element.
Regards,
Plamen
Telerik
Yes indeed unfortunately there is no built in functionality for such issue yet we have exposed all the CSS classes of the control in this article so if some additional styling or jQuery action is needed it is much easier to find the desired element.
Regards,
Plamen
Telerik
0
PETER
Top achievements
Rank 1
answered on 05 Jan 2017, 09:35 PM
Thanks Plamen. In case anyone is looking for how to find the 'Next' button in the wizard, it is : ".rwzNext"