I’m evaluating scheduler control and I need help with the following:
No LightBox
User should be able to select time for events for any date, but I don’t want lightbox to load.
Restrict navigation
In weekview, I have to restrict users to a date range, i.e user should be able to add event only between a Start date and End date. Other dates could be disabled or navigation outside the range should be disabled. It would also be helpful if it there is a vertical line indicator for start date and end date.
Yeah, I don’t want to show lightbox when a user creates an event. Can you share the code necessary to achieve this?
Regarding 2, I want to restrict users to add events only between a start date and end date (not hours), i.e in week view I should be able to restrict user to add events between say, ‘16th april 2012’ to ‘21st april 2012’. If users try to add events for other dates outside this range, scheduler shouldn’t allow them to add that event. Also I need a visual line indicator for the start date, end date.
[code]
@Html.Raw(Model.Render()) [/code]
server:
[code]public virtual ActionResult Index()
{
var sched = new DHXScheduler(this);
//enable extension which allows to limit active dates, current version does not have server side api to configurate limits
sched.Extensions.Add(SchedulerExtensions.Extension.Limit);
//call client side code before scheduler initialization
sched.BeforeInit = new List() { “config();” };