Questions Tagged how-to
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.)
DayPilot
Answered: Touch devices (including iPad) are fully supported since 7.3 release: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-3.html
dpc1.commandCallBack("refresh") (javascript) will not refesh calendar (asp.net)
Hi, I'm trying to refresh the calendar from a Javescript function. The first time the page is loaded, the function fires as expected and the calendar is updated; after that initial working action, it...
DayPilotMenu in MVC
Answered: Yes, you can use context menus in DayPilotPro for MVC3. Here's an example:
@Html.DayPilotMenu("menu1", new DayPilotMenuConfig
{
CssClassPrefix = "menu_",
UseShadow = true,
Items = new Da...
Size Row nello Scheduler
Answered: Unfortunately not. You can only control it indirectly: http://www.daypilot.org/scheduler-row-height.html
Agenda / Upcoming events list
Hi, Does the DayPilot calendar allow for creation of an Agenda, similar to the one in Google calendar? I'm really just looking for a list of upcoming events with the option to include my own text/col...
How to use the parent100pct in DayPilotCalendar
Hi there, I have a DIV gnerated as follows : <div id="div1" runat="server" style="position:absolute; top:110px; left:150px; right:10px; bottom:10px;"> Within this DIV I have a DayPilotCalendar contro...
Day Pilot Scheduler question
I want to be able to fill in the day events for each resource listed. Here is what I have so far . . . LOB 101 LOB 102 LOB 103 etc. After loading the resources (i.e., rooms), I want to go back and po...
How to assign a list type variable to data columnfield of daypilotCalender ?
i am adding columns to day pilot calender control for resource view. I have a list of rooms and inside that name field is there which i want to assign to the data column field. roomList.Items.ForEach...
how to match data source id with columns's ids in resource view?
i am adding columns to day pilot calender control for resource view, i am not seeing the data in the control. do i need to match the data source id and column id explicitely ? how can i do that? room...
Scheduler not updating associated data bound list view
Hi, I have a page that uses a databound list view for unscheduled events that I drag onto the DayPilotScheduler and that works nicely, the event is placed on the schedule and removed from the listvie...
CellDuration and Event Time
Hi, If I have the cell duration as 15 minutes, and my event time is from 9:00 to 9:20 AM. The event is being displayed only from 9:00 to 9:15 PM. Is there any way to get around this, so that the even...
event left bar color height
how to increase event's left bar color's height in day pilot calender control?
change row header name
Answered: You can add columns to the daypilot control via: - dayPilot.Columns.Add(name, id); When events are added set the DataColumnsField property of the event to the id of the relevant column.