search envelope-o feed check
Home Unanswered Active Tags New Question

Questions Tagged

How can I make appointments be staked vice side by side in a week view?

Answered: Hi Steve: 1. You can try fixed column width: http://doc.daypilot.org/calendar/fixed-column-width/ This would be a quick solution. You can specify the column width in pixels. A horizontal scrollbar wi...

How to display modal dialog after button click

Answered: If you mean DayPilot.Modal (http://code.daypilot.org/81367/daypilot-modal) and a generic ASP.NET button you can try this: <asp:Button id="Button1" runat="server" OnClientClick="new DayPilot.Modal...

can DayPilot Pro Business Edition work with ASP.Net 2.0?

Answered: DayPilot is compiled with .NET 2.0 and you can use it on IIS 6 with .NET Framework 2.0. Everything should work. Just note that most of the tutorials at http://code.daypilot.org are built using Visual...

Getting back additional data from calendarbackend

Answered: You can send custom data using Update() method: http://doc.daypilot.org/calendar/callback-update/ The data parameter will be passed to AfterRenderJavaScript. It is stored in CallBackData internally.

Is it possible to change hour height?

Answered: You can use the CellHeight property: http://doc.daypilot.org/calendar/cell-height/

Default Themes

Answered: They are now used in the theme designer for all new themes: http://themes.daypilot.org/ Just start a new one and download it.

Scheduler month header not always visible when DynamicLoading=true

Answered: This issue is fixed now in build 7.7.5657. You can test and download it in the sandbox: http://mvc.daypilot.org/sandbox/Scheduler/DynamicEventLoading Please let me know if there is any problem.

Get visible time range (scheduler)

Answered: Sorry, didn't see this: http://api.daypilot.org/daypilot-scheduler-getviewport/ dps.getViewPort().start and dps.getViewPort().end is what I was looking for.

Reload single event from database

Answered: If you want to refresh the events it is better to use .events.list array instead of .events.add() method. Adding events one by one using .events.add() works too but it is slower (it refreshes the sch...

BC30456: 'EventDetail_ItemUpdated' is not a member of 'ASP.web_app_daypilot_aspx'.

Answered: ok found it in the tutorial in the Default.aspx.vb file, my bad, thanks. Eunice

Can you define a Long Weekend?

Answered: You can use DayPilotNavigator.BeforeCellRender event handler to add a custom CSS class to a day cell. http://doc.daypilot.org/navigator/cell-customization/ Note that in version 7.7 the CssClass value...

Load Resource Tree from Database

Answered: You can use something like this: An example using DayPilot.request(): function loadResources() { DayPilot.request("backend_resources.php", function(result) { var data = eval("(" + result....

How can i change the start date and end date dynamically by user selection

Answered: CommandCallback

How to change PerformDataBinding for changing the text displayed in text for Calendar?

Answered: You can use BeforeEventRender event to modify the event HTML as needed. protected void DayPilotCalendar1_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.Calendar.BeforeEventRenderEventArgs ...

**Daypilot Month** set height some event

Answered: The event height in DayPilot Month can't be set individually. You can increase the event height using .eventHeight property (for all the events). Having custom height for individual events would prev...

setting cellBackColor after init doesn't work

Answered: This issue is fixed now in build 7.7.698 (see the sandbox): http://javascript.daypilot.org/sandbox/

Demo project does not launch with VS 2013

Answered: This turned out to be an issue of IIS Express that reports different values in request.Path and request.ApplicationPath. It's now fixed in build 1.3.401: http://mvc.daypilot.org/daypilot-lite-for-asp...

How can i have 24 hour timeline on the Y-Axis and resource names on X-Axis

Answered: You will need to use the Calendar control switched to Resources mode: http://doc.daypilot.org/calendar/resources-view/ If you are going to display a lot of resources on the X axis of the calendar, yo...

cancel an onEventMoved or onEventResized

Answered: Found the answer: hope this helps other people save some time //This gets called when the user drops the event dp.onEventMove = function (args) { //args.e is the event object that is being moved //ar...

Navigation

Answered: You can switch dates using .commandCallBack() method: MVC View <div class="note"> <a href="javascript:dp.commandCallBack('previous');">Previous</a> | <a href="javascript:dp.commandCallBac...

month navigator - update to current date from next/previous link button

Answered: You can use .select() method of the navigator object on the client side: http://api.daypilot.org/daypilot-navigator-select/

IE: Script error

Answered: This issue is now fixed in the latest sandbox build (7.7.3050): You can test it in the time headers demo which includes navigation buttons (previous/next): http://www.daypilot.org/sandbox/Scheduler/T...

How to show crosshair on scheduler without event

Answered: Forget this. It was my own mistake

Drag and Drop from table to Scheduler is working only for current date,Not working for selected date

Answered: This issue is fixed now in the latest sandbox build (7.7.5650): http://mvc.daypilot.org/sandbox/Scheduler/ExternalDragDrop The fix will be included in the next SP release.

Year View

Answered: Yes, there is a plan to add a year view based on the scheduler (http://doc.daypilot.org/scheduler). It will look like the timesheet mode (http://doc.daypilot.org/scheduler/timesheet/) but there will ...

Daypilot Scheduler Lite

Answered: You can try 1. to remove [assembly: AllowPartiallyTrustedCallers] from DayPilot/Source/Properties/Assembly.cs (and recompile DayPilot) or 2. to add [assembly: AllowPartiallyTrustedCallers] to your dl...

Minimize sources

Answered: It is minimized using ESC (ECMA Script Cruncher). You can find the instructions here: http://www.daypilot.org/how-to-compile-daypilot-pro-source.html The ESC download page is no longer available but ...

Change Calendar Gridline Color and Width

Answered: I've posted a short tutorial that demonstrates how to modify the CSS theme for the timetable tutorial: http://code.daypilot.org/39902/asp-net-timetable-with-custom-css-theme Instead of the _matrix cl...

Initialize daypilot in a separate window (window popup, window.open)

Maybe there are more than one problem but i'm stuck at pretty much the first row. I am trying to allow my users to make the scheduler/calendar "fullscreen" by snapping it out of the main window into ...

Calendar for different users? (Users can only view/edit their own events)

Answered: This has to be done on several levels: 1. You can use the authentication system you already have in place to identify the current user. 2. Let's simplify the authorization rules (ACL) to general "rol...
Previous Questions 3211-3240 of 5218 Next