Questions Tagged how-to
How to put the current date as first view on the DayPilotScheduler?
Answered: You can do it using SetScrollX() method: protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DayPilotScheduler1.SetScrollX(DateTime.Today...
How to show DayPilot:DayPilotScheduler Bubble using JavaScript
Answered: Please see here: http://kb.daypilot.org/29719/how-to-show-a-calendar-event-bubble-using-javascript/
how do i open bubble on Click activation i m using earlier version of daypilot (5.8)
Answered: See here: http://kb.daypilot.org/29719/how-to-show-a-calendar-event-bubble-using-javascript/
DayPilotBubble1_RenderContent in VB
Answered: The direct equivalent of "e is MyType" would be "TypeOf e Is MyType": If TypeOf e Is RenderEventBubbleEventArgs Then Dim re As RenderEventBubbleEventArgs = TryCast(e, RenderEventBubbleEventArgs) ... ...
Side Scrolling Problem Persists
Answered: I figured it out. I put the Calendar inside a div with TEXT-ALIGN set to left. That ran the whole calendar to the left of the screen, then I put it into a table that was centered and the problem went...
How to limit Number of months in shedular
Hi, I am implementing daypilot shedular control in my asp.net application. But it display data from January to December. How do i retrict the shedular to show data up to specific moth e.g. How do i i...
Daypilot paging and sorting
Hi, I am bit confused to found is it possible paging and sorting in daypilot shedular if yes please give me some ideas for how do i achieve it. Thank You
Customize Header in
Answered: You should use the following settings:
CellDuration="10080" (one week)
CellGroupBy="Month"
You can customize the header HTML using BeforeTimeHeaderRender event handler. See also: http://kb.daypi...
Does recurring events support "every third monday of the month" ?
I'm looking at the DayPilot calendar control for a client project. The recurring events feature works very well, but I can't find any documentation on scheduling a recurring event on the 'x' day of e...
Hide Calendar Hours when exporting to image
Answered: It looks like a bug. Please let me check it. As a workaround, you should be able to copy a portion of the result image (DayPilotCalendar.Export()) using this Graphics.DrawImage() overload: http://msd...
Show scheduled time in an event
I have an application where my clients can setup different events for when they are available and then their clients can schedule lessons during those events. I am trying to find a good way to show o...
Integrated Message Bar
Answered: Please see http://forums.daypilot.org/Topic.aspx/1633/calendar-integrated-message-bar
Response.redirect in Context Menu
Hai team , iam having a Context menu with 4 items in it ,with the call back feature , in 2 of them i want to redirect them to som other page.while trying to do this iam getting an exception that Resp...
Days scheduled in a calendar
Hi I am new to DayPilot Pro. We have a licensed version of DayPilot which we are currently using in our project. We have configured it to create recurring events and store it in an encoded format in ...
Disable button click of modal
Answered: You can disable closing the dialog on background click by commenting out line 286 in modal.js:
hide.onclick = function() { This.hide(); };
But it's dangerous - if something goes wrong in the dial...
Not all events display on the DayPilot Control
Answered: In some browsers (especially IE), this can happen if you are trying to display a single long word that doesn't fit the event. This is a problem of how the words are wrapped and it can't be controlled...
Not finding DayPilot.Web.Ui.Events
Answered: View the object in the object browser. Find the Web.Ui entry can click on 'Events' In the right pane of the viewer click on 'Enable'. That should fix your problem.
problem in concurrent events on the same day in daypilot scheduler
I want to use concurrent events when ever i re-size the event if any other event occur at the same time then i want to shift that event to the next day....what should i do ....
Open source DLL - Events now found
Answered: View the object in the object browser. Find the Web.Ui entry can click on 'Events' In the right pane of the viewer click on 'Enable'. That should fix your problem.
Is there a way to change the background color of the DayPilotCalendar1.UpdateWithMessage?
Answered: At this moment, it's only possible when you display the message bar manually using AfterRenderJavaScript [http://api.daypilot.org/daypilot-calendar-afterrender/] and .message() [http://api.daypilot.o...
Can I display a Scheduler for 48 hours / 2 days?
Answered: I set Days="2" and TimeFormat="Clock24Hours". I used a RadioButtonList for timezones, putting the hours as the value, and sent the selected value to my stored procedure, and recalculated the date usi...
Dragging whole events instaid of duration bar.
Hi, I would like to drag by clicking anywhere on the Event (instaid of only the duration bar). Looks like this question has been answerd here: http://forums.daypilot.org/Topic.aspx/1410/click-and-dra...
How to select multiple resouces in DayPilotPro
Answered: You can select multiple events if you hold Ctrl when clicking the event.
Getting OnBeforeEventRender to fire for Month
Answered: The event handler is invoked correctly but this call will not do anything, Response.Write() is not allowed there. You can check it by modifying the event: e.InnerHTML = "test"; e.BackgroundColor = "r...
Set an EventHeight per event
Answered: This is not possible in the Lite version. In the Pro version, you should be able to do this by creating a special CSS class and applying it to the event in BeforeEventRender (in CssOnly mode). Just n...
Delete event For MVC 3
My Company is about to show our custummer DayPilot Pro. Atm ive got create event and edit event to work. but i cant figure out how to make a delete event to work in MVC 3? i have a ode like this atm ...
Refresh DPC onClose of jQuery Dialog
Answered: You can request a refresh by calling
dpc.commandCallBack("refresh");
This will invoke Command event on the server side. You need to add a handler for Command event and reload the events there:
...
Display multiple lines in Month calendar
Answered: U meant Daypilot Month Right? If so, In properties, Change EventFontSize:200(For Example). Then Do one more thing EventStackingMode :cell. It should be multiline.(In Expected Format.)