0

このサイトからスケジューラーネットを表示するサンプルプログラムに取り組んでいます: http://scheduler-net.com/

コントローラーで開発したホームページがあります。スケジューラ カレンダーは別のコントローラにあります。ここで、homepagecontroller.cs のホームページにスケジューラ カレンダーを配置する必要があります。

あるアクションから別のアクションに制御を移そうとしましたが、同じコントローラーの下でのみ可能です。この参照によると 、あるビューの情報を別のビューに転送するにはどうすればよいですか?

あるコントローラから開発されたスケジューラ カレンダーをホームコントローラに配置するにはどうすればよいですか。または、calendercontroller.cs を避けて、homecontroller 自体に配置することは可能ですか。

 public ActionResult Index()
    {
        var scheduler = new DHXScheduler(this); //initializes dhtmlxScheduler
        scheduler.LoadData = true;// allows loading data
        scheduler.EnableDataprocessor = true;// enables DataProcessor in order to enable implementation CRUD operations
        return View(scheduler);
    }
4

1 に答える 1

0

ビューで部分的にレンダリングできます。これを views/Home/Index.cshtml に入れます:

@{
    Html.RenderAction("Index", "SchedulerController");
}

明らかに、Index と SchedulerController を正しい名前に置き換えます。

于 2013-05-02T14:42:39.867 に答える