Suppose I've three events created with three different date and now I want to show all that events in DayPilot Lite 2.2 version [that is free], how can I achieve this.
You can set the visible date by setting StartDate property. If you want to show more days at once set Days property to the that number of days.
Comment posted by Shahnawaz Khan 19 years ago.
Thanks! for your support.
I want to show day view, week view and month view in DayPilot lite. If it's possible then how can I implement it?
Also I want to put previous - next link for moving in calendar, is it possible.
Please reply as soon as possible.
Thanks & Regards! Shahnawaz Khan
Comment posted by Dan Letecky 19 years ago.
1. Views
Day view: Days = 1
Week view: Days = 7
Month view: Days = 31 (but this won't be nice; month view requires a different days arrangement - I'm currently working on this feature and it will be a part of DayPilot Pro)
2. Next/Previous links:
Add two ButtonLinks next to the DayPilotCalendar control and handle the clicks:
protected void LinkButton1_Click(object sender, EventArgs e)
{ DayPilotCalendar1.StartDate = DayPilotCalendar1.StartDate.AddDays(1); // to change the date; ...AddDays(-1) to move backwards DayPilotCalendar1.DataBind(); // to refresh the data from a data source
}
What about if I want to set the start date to whatever date is clicked in a Calendar Control using ajax? I want to use callback and DayPilotCalendar1.update(). I cant get the date change to change according to the date pressed on the calendar. I use
Me.DayPilotCalendar1.StartDate = Calendar1.SelectedDate Can you help me on this one please?
I would like to include a working example of this scenario in the DayPilot package soon.
Comment posted by Anonymous 18 years ago.
Hello,I want to create a same event from one date to another date(i,e-gap of sevendays).not clicking every time in that cell(seventimes for seven days).Can anyone help me in this matter.
A bunch of thanks in advance..............................
Regards,
Sudeep Kumar Ray
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.