I am evaluating the Scheduler for ASP.NET MVC product since we need that kind of functionality in our application. Before proceed with purchasing this, I need to get clarification for couple of items regarding the features that I expect from this product.
- I need to restrict scheduler only to view -Months│ and I know that I can do it by, scheduler.Views.Clear() and then
scheduler.InitialView = “month”;
My first question is, can the scheduler restrict to add only one event per day. (e.g: if the user click the DAY cell on month view, it should load the current event for modify, or if there is no any event, it should load the lightbox for create an event) v NO MULTIPLE EVENTS IN SINGLE DAY - My second question is, I want to display my lightbox control values on the calendar month view other than the text (New Event).
As a example, let say I have customized the lightbox with couple of textbox, select menus and radio box controlers. What I want here is, when the user do modification on lightbox and hit save, I want to display those textbox, select drop down values on the calendar DAY cell instead of default text? DAY CELL CUSTOMIZATION WITH LISTBOX CONTROL VALUES - Last question is, how I can do the validation for lightbox controllers which I populated from my model class (linq to Sql)?
Great if you can provide answers for the above questions.