This is a migrated thread and some comments may be shown as answers.

Use MVC structure AND telerik ASP.NET Ajax?

17 Answers 633 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Julien
Top achievements
Rank 1
Julien asked on 31 Mar 2011, 01:39 PM
Hi,

For one of my project, i wans to use a MVC architecture for my program, so I checked what you've got for libraries for ASP, and I see you have an ASP.Net MVC and an Ajax version.

So, my questions:
  • Does Telerik ASP.NET MVC brings something to the "MVC" part? Or is it only user controls that we can use when we have a MVC application?
  • Is it possible to use your ASP.NET Ajax components with an ASP.NET MVC(with and without Telerik for ASP.NET MVC)?

Thank you for your help

17 Answers, 1 is accepted

Sort by
0
Sebastian
Telerik team
answered on 31 Mar 2011, 03:25 PM
Hi Julien,

Straight onto your questions:
  • Telerik Extensions for ASP.NET MVC are native MVC extensions built from ground up. They are architectured in par with the Model>View>Controller paradigm. More information about our MVC offering can be gathered from here.
  • Although theoretically RadControls for ASP.NET AJAX can be used in MVC applications, they have some limitations and we strongly recommend using our MVC component for such development instead.

Best regards,

Sebastian
the Telerik team
0
Julien
Top achievements
Rank 1
answered on 04 Apr 2011, 09:07 AM
Hi,

The problem is that your MVC components are poor compared to ajax components. Our customer wants drag&drop, calendars, rich editors and some charts, and we wants to have a MVC architecture.

You see my problem? 
I've three solutions:
-use MVC & Ajax components
-Use ajax components and forget about the MVC architure
-Use MVC components and refuse a lot of functionality requirement of our customer

Julien
0
Sebastian
Telerik team
answered on 04 Apr 2011, 11:00 AM
Hello Julien,

We do have MVC calendar/pickers and html editor components which you can use right away. Furthermore, we are constantly extending the set of our MVC extensions with each subsequent release of the suite.

In addition, you may be happy to know that we are planning to develop HTML5-driven chart based on SVG/VML (with MVC wrapper) for the next Q2 2011 release of the Telerik MVC extensions, expected in mid summer. Stand by for more details about our future MVC plans - the Telerik Q2 2011 MVC Roadmap will be published by the end of this week.

Greetings,
Sebastian
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Julien
Top achievements
Rank 1
answered on 07 Apr 2011, 01:42 PM
Great news. And what about the ribbon bar?

Thank you!
0
Sebastian
Telerik team
answered on 07 Apr 2011, 01:50 PM
Hello Julien,

So far we do not have plans to develop MVC counterpart for our ASP.NET AJAX RibbonBar component.
 
Regards,
Sebastian
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Julien
Top achievements
Rank 1
answered on 07 Apr 2011, 01:53 PM
And do you think I can use it to navigate in my application with asp MVC?
0
Julien
Top achievements
Rank 1
answered on 04 May 2011, 12:15 PM
Where can I see the roadmap? Because I will need to display some statistics
0
Sebastian
Telerik team
answered on 10 May 2011, 11:38 AM
Hi Julien,

The official Telerik MVC Roadmap is publicly available here. As to the ribbon bar - at this point you may consider using our AJAX RibbonBar control in MVC application as a replacement (if applicable), having in mind the information available in the documentation.

Greetings,
Sebastian
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
Geoff Hardy
Top achievements
Rank 1
answered on 18 Oct 2011, 08:20 PM
Is it possible to use the ASP.NET AJAX Spell checking control in an MVC application? If so, do you have any guidance on how you might go about doing so? If not, are there any plans to make the spell checking functionality available with the MVC extensions?

Thanks,

Geoff
0
Sebastian
Telerik team
answered on 19 Oct 2011, 12:36 PM
Hi Geoff,

You can use our spell checker in ASP.NET MVC application as illustrates in the sample MVC 3 Razor project attached to this message. The most important parts of the implementation are highlighted below:

- you can use the AJAX spell checker either in MVC WebForms views or partial WebForms views rendered as part of a MVC3 Razor view (see this topic for reference). In this case I am using a partial view (ascx) that incorporates the spell
- wrap the AJAX spell inside a form tag with runat=server attribute setting.
- to validate MVC html textbox, ensure that you set the ControlToCheck property of the spell to the name/id value of the html textbox, and its IsClientID property to true. 
- register the axd handlers required for the spell in the main web.config file of the MVC application as follows:

<system.web>
  ........................................
   <httpHandlers>
     <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
     <add path="Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
     <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" />
   </httpHandlers>
 </system.web>
 <system.webServer>
   ..............................................
   <handlers>
     <remove name="asset" />
     <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
     <add name="Telerik_Web_UI_DialogHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" />
     <add name="Telerik_Web_UI_SpellCheckHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" />
   </handlers>
 </system.webServer>

Note that I also utilize RadSciprtManager in the partial view and registered the common http handler (Telerik.Web.UI.WebResource.axd) used by it and other of our AJAX controls.

Presently we do not have immediate plans to include MVC spell checker control to our Telerik MVC Extensions suite.

Kind regards,
Sebastian
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 RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
Pramod
Top achievements
Rank 1
answered on 20 Dec 2011, 09:01 AM
Hi,

 I am using Telerik MVC3 Project, our client wants Scheduler in application,can i use Telerik ASP .net Ajax component in project and can i have all events related to control please help me if you have any sample project by using Scheduler in MVC3  project


Thanx,
Pramod
0
Sebastian
Telerik team
answered on 20 Dec 2011, 01:17 PM
Hello Pramod,

You may consider using our ASP.NET AJAX scheduler in ASP.NET MVC project utilizing its web service binding feature. Thus you should be able to use the scheduler in your MVC application.

Regards,
Sebastian
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 RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
Pramod
Top achievements
Rank 1
answered on 20 Dec 2011, 03:03 PM
Hi,

 when i am using ASP.NET AJAX scheduler in ASP.NET MVC project, i am not able to call events like OnNavigationComplete ="RadScheduler1_NavigationComplete"  when user click on Day, week and Month button and unable to change date 

Thanx,
Pramod
0
Pramod
Top achievements
Rank 1
answered on 21 Dec 2011, 03:31 PM
Hi,

Thanks for fast reply ! I managed to fix my problem and appointments are loaded but I can't add new files to xml file or update current. However I've got another problem. I want to change source of appointment from xml to sql. So I used linq to sql and create dbml class and change code in webservice. 

But when I launch my site I get error: Message from webpage: "The server method 'GetAppointments' failed. When I set breakpoint on my method then I see that method isn't even called by Scheduler. 

Thanx,
Pramod
0
Lasse
Top achievements
Rank 1
answered on 01 Jun 2012, 03:08 PM
0
Wesley
Top achievements
Rank 1
answered on 06 Aug 2012, 12:05 AM
Mikkel ok :)
0
Mk
Top achievements
Rank 1
answered on 14 Aug 2012, 07:15 AM
Tags
General Discussions
Asked by
Julien
Top achievements
Rank 1
Answers by
Sebastian
Telerik team
Julien
Top achievements
Rank 1
Geoff Hardy
Top achievements
Rank 1
Pramod
Top achievements
Rank 1
Lasse
Top achievements
Rank 1
Wesley
Top achievements
Rank 1
Mk
Top achievements
Rank 1
Share this question
or