Kendo Captcha Component with Kendo Wizard

1 Answer 13 Views
Captcha Wizard
Khalipha
Top achievements
Rank 1
Khalipha asked on 22 Sep 2025, 04:52 PM | edited on 24 Sep 2025, 06:54 PM

Hello, I am attempting to use your kendo captcha component for my web project when I ran into some technical difficulties related to using the kendo captcha in conjunction to a kendo wizard. I'm trying to run this captcha component as part of a step in a kendo wizard. After adding in my component with the necessary endpoints and functions into my kendo wizard, I get a blank screen with no errors or any endpoints being hit. I know the endpoints work for the captcha component because I'm using the baseline example on the kendo documentation for the Captcha overview into the very first step of my kendo wizard, and my kendo wizard loaded up just fine before adding in the captcha component. I assured the captcha component works just fine on a blank index page, so I'm suspecting the kendo wizard might be at fault but I would like  some assistance in confirming that theory.

Can someone me an example of the kendo captcha being utilized in a kendo wizard for ASP.NET Core?

1 Answer, 1 is accepted

Sort by
0
Mihaela
Telerik team
answered on 25 Sep 2025, 10:16 AM

Hello Khalipha,

As we disscuessed in the Kendo Captcha Component API Methods not Working as Expected forum thread, set the Field() option to the Form's item that contains the Captcha. Otherwise, the form's item cannot be initialized correctly:

                items.Add().Field("Captcha")
                    .Label(l => l.Text("Please verify you're human:"))
                    .Editor(ed => ed.Captcha()
                    .CaptchaImage((string)ViewData["Captcha"])
                    .CaptchaId((string)ViewData["CaptchaID"])
                    .DataCaptchaField("Captcha")
                    .DataCaptchaIdField("CaptchaID")
                    .Handler(handler => handler.Action("Reset", "Home"))
                    .AudioHandlerFunction("audioHandler")
                    .ValidationHandler(handler => handler.Action("Validate", "Home"))
                    );

Regards,
Mihaela
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Captcha Wizard
Asked by
Khalipha
Top achievements
Rank 1
Answers by
Mihaela
Telerik team
Share this question
or