I'm a newbie with MVC and I'm trying to catch the event that redirects the tabindex changing to an actionresult, so I can do some validation; can you please give me an example on how I can accomplish this.
ActionResult
3 Answers, 1 is accepted
0
Georgi Tunev
Telerik team
answered on 01 Dec 2011, 01:22 PM
Hi Joshua,
I am not quite sure that I understand your question. Could you please clarify?
Best wishes,
Georgi Tunev
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now
I would like to get the tabs selectedIndex changing event to the controller, How can I do that?
0
Atanas Korchev
Telerik team
answered on 07 Dec 2011, 10:34 AM
Hello Joshua,
Telerik Extensions for ASP.NET MVC do not raise any server-side events. What you can do is configure your tabs to navigate to a specified controller and action:
tabs.Add().Text("Index").Action("Index", "Home");
Regards,
Atanas Korchev
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now