Scheduler with Asp Mvc

Posted by Samuel on Stack Overflow See other posts from Stack Overflow or by Samuel
Published on 2010-04-25T15:23:11Z Indexed on 2010/04/25 15:33 UTC
Read the original article Hit count: 235

Filed under:
|
|
|

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.

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about hybrid