I use mvc4 with scheduler.
I have scheduler and a textbox in the same view.
I could render scheduler until I tried to insert the model above in the view
@model OnlineAB.Models.exampleModel
it shows the following error pointing the view that is using scheduler:
CS1061: ‘Project.Models.Schedulermodel’ does not contain a definition for ‘GenerateLinks’ and no extension method ‘GenerateLinks’ accepting a first argument of type ‘OnlineAB.Models.Schedulermodel’ could be found (are you missing a using directive or an assembly reference?)
Source File: c:\Users\user\Desktop\Proj\project\Views\Scheduler\Index.cshtml Line: 237
How i cannot add any other model in the view using the scheduler?
(Is this because scheduler is using seperate model?)