views:

111

answers:

2

Hi,

I want to use a Scheduler like Telerik Scheduler in my Mvc project. The problem is that the Scheduler is a Asp.Net WebForm control. For this reason, I must create a WebForm page in my Mvc project to put the Scheduler control.

When I show the page, it work fine to render the layout of the control but if I try to interact with it; click for change date, change to day view to week view, the control don't change.

I know that postback doesn't work in mvc project but does it work in a WebForm page in a Mvc project? If it doesn't work, it is the reason why when I try to interact with the control, the control don't respond.

I think it's because the postback don't work and the Scheduler use 100 % Databinding where when I change date, the postback don't contain any data that I have changed and for this reason, the control can't change is layout.

Have you any ideas about postback with WebForm in mvc project?

What type of design can I adopt? (Two differents projets: One for my Scheduler with WebForm and another for all the rest of my website in Mvc project)

Any other control easily to use with Scheduler?

Tips and tricks when needing both WebForm control and Mvc control in Mvc project?

Thank you very much.

A: 

Hanselman has a good guide for mixing MVC and WebForms into the same project.

Eduardo Molteni
A: 

Try the Ext Scheduler, it works well with ASP.NET MVC. On the example page you will find a complete mvc integration demo too.

http://ext-scheduler.com/examples.html

mats