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

Questions Tagged webforms

Build a resource utilization row for .net webforms version

Answered: Unfortunately, this feature is not supported in the WebForms version.

Applying CSS styles to dynamic "bubble" popovers

Answered: The "month_default_event_hover" class specifies appearance of calendar events when you move a mouse over it. To control the callout width, you can use "bubble_default_main" class (for the default the...

Event test

Answered: The event text gets HTML-encoded (as a protection against XSS attacks) and then it is treated as HTML. That means ASCII line breaks will be ignored. If you need to insert a line break, you'll have to...

How do you make more than one employee run the same shift

Answered: Yes, there are many different scenarios that are not covered by this sample. To add more people to the same time and location, you can choose a solution depending on the workflow: 1. To allow more as...

Scheduler date problem

Answered: Try removing the following section from Page_Load: DayPilotScheduler1.Scale = TimeScale.Manual; DateTime start = new DateTime(DateTime.Today.Year, 1, 1, 12, 0, 0); DateTime end = start.AddYears(1...

Issue when rendering the scheduler

Answered: I recommend checking the data - it may contain invalid items which break the view. You can also check the JavaScript console to see if there are any errors.

Loading calendar of other user

Answered: It's possible to access a shared calendar like this: https://stackoverflow.com/questions/41095971/how-do-i-access-a-shared-calendar-using-ews-managed-api/41096736

Getting Error "The request failed. The remote server returned an error: (403) Forbidden."

Answered: It's not clear where this error message comes from (from your server or the Exchange server). However, it looks like your server so I recommend checking the permissions in the web server configuratio...

Database Connection

Answered: I recommend exploring the downloadable project, it's a complete implementation of the sample application, including database connection.

External drag and drop not working on application (web forms)

Answered: Please take a look at this demo: https://aspnet.daypilot.org/demo/Scheduler/ExternalDragDrop.aspx The source code of this demo page is included in the download package. You can use it as a starting p...

Scheduler with Sortable Columns for Javascript

Answered: There is a tutorial in the works that will show how to sort rows using the column headers in the JavaScript version. It will be published at https://code.daypilot.org - you can subscribe to email not...

Exception User-Unhandled

Answered: Yes, thank you so much. I've checked in WireShark the IP address my app was trying to connect with. Then I set that address (with another port) as a proxy and suddenly it started to work. Thank you!

Is this source code working with C# winform?

Answered: Unfortunately DayPilot Pro is only available for ASP.NET WebForms. It's possible to run the WebForms version in a WinForms application using an embedded browser (WebControl), but it's just a workarou...

Read a Shared Calendar Appointments

Answered: You should be able to get connect to a shared calendar like this. Instead of: // load the default calendar CalendarFolder calendar = CalendarFolder.Bind(Service, WellKnownFolderName.Calendar, new ...

Gannt Period Limit

Answered: You can control the visible data range using StartDate and Days properties. You can use Days property to increase the number of visible days.

Link between assignment and recurrence

Answered: Please see the SQL schema at the bottom of the article. The recurrence information (serialized rule) is stored in AssignmentRecurrence field (Assignment table). DayPilot uses this rule to expand this...

calculation

If I want to add a calculation can you show me how? I downloaded the full booking system but for my school project, the system should have some sort of a calculation!

Database

Answered: The SQL Server database schema looks like this: CREATE TABLE [dbo].[Assignment] ( [AssignmentId] BIGINT IDENTITY (1, 1) NOT NULL, [AssignmentNote] VARCHAR (2000) NULL, [A...

Keep expanded/Collapsed state after a postback Daypilot Gantt

Answered: If you set StoreTasksInViewState="true" the current state of the whole task hierarchy will be saved in the ViewState and it will be available on the server side during PostBacks.

Event Creation

Answered: The latest version of DayPilot Lite exposes "start" and "end" variables (DayPilot.Date object). The string replacements ("{0}") are no longer applicable. You can use the following TimeRangeSelectedJa...

How to use showAfter bubble property

Hi, I'm using daypilot for web forms. How can I use showAfter property in DayPilot.Bubble. I set 2000 (ms) to test but when I hover on cell, its does not wait 2 seconds. I need configure something mo...

Timetable Tutorial (ASP.NET, C#, VB.NET)

sir i have request to show how we will add in event to show time and in new event as it is note we are giving in the event

startDate

how to assign the Date on Start Date in Daypilot Scheduler Asp.net webforms

How to display full time on monthly calendar event

Answered: I found a solution in a demo project. The demo project is in the DayPilotProTrial-8.3.3601.zip on the following page : https://www.daypilot.org/demo/ On the StartEndTime aspx page, look for the OnBef...

code

please how the compile the source code

Display partials or some part of (current) document

Answered: It's possible to display custom HTML using .showHtml() method. You can get the inner HTML of a certain element using innerHTML: var html = document.getElementById("someContentDiv").innerHTML; new ...

whom to contact if i want to buy this

Answered: Please contact sales@daypilot.org for sales-related questions, thanks.

Desktop app

Answered: Yes, it's possible. You'll need to replace the browser-server communication with direct API calls. 1. For calling JavaScript functions from the WebForms application use WebBrowser.Document.InvokeScri...

close modal dialog

Answered: It's not possible to close the modal dialog from the server side. In the MVC samples, a slighly different approach is used - the form displayed in the modal dialog is not submitted in a traditional w...

Critical Path Management

Answered: This tutorial (http://code.daypilot.org/68118/gantt-chart-tutorial-asp-net-sql-server-c-vb-net) uses the Scheduler control in Gantt mode (ViewType="Gantt") which has limited capabilities. You might w...
Questions 1-30 of 34 Next