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

Active Questions

box.html in Gantt Task not displayed of a GroupTask

Setting the box.html is not displayed. See following in documentation box.html (if not specified, complete percentage is used for tasks, empty string for groups and milestone) Setting box.htmlLeft ha...

How to change cell color on current row

Answered: You can modify the cells on the fly using the cells API, e.g. dp.rows.find("A").cells.all().html("A"); You can also add/remove CSS classes using .addClass() and removeClass(). See also: https://a...

Asp Net MVC5

Answered: It's a propery of the Task class. You can set the value like this: Tasks = new TaskCollection(); Task task = new Task("Task 1", "1", DateTime.Today, DateTime.Today.AddDays(5)); task.Complete = ...

Error with attribut "cellgroupby" And "scale"

Answered: It looks like you are using the Lite (open-source) version that doesn't support these features. See also the "Availability" table at the bottom of the documentation pages: https://doc.daypilot.org/sc...

Prevent drag event

Answered: > Is there a javascript function (or postback event) that I can use for this feature? EventMoving event (https://doc.daypilot.org/scheduler/event-moving-customization/) is a good way to implement it....

Enable saturday and sunday on ShowNonBusiness=false

Answered: The latest build (8.3.3548) introduces BusinessWeekends property which you can use to set the behavior (the default value is false): <DayPilot:DayPilotScheduler ... BusinessWeekends="true" ...

RowHeaderColumn change after EventResize

Answered: By default, events are not stored anywhere so you need to reload them (use DataSource and DataBind just like in Page_Load): Public Sub dpCalendar_EventResize(sender As Object, e As DayPilot.Web.Ui....

Prevent dragStart from removing list item

Answered: Oh, found another answer that seems to have answered this. The first parameter needs to be null, not that last parameter as indicated in the above link. onmousedown='return DayPilotCalendar.dragStart...

Closed modal not cleaning up after itself?

Answered: This is how it works at the moment: If the modal displays a URL (and not custom HTML) it creates an iframe object and uses it to display the target page. Creating the iframe is expensive so it keeps ...

Updating Navigator's SelectMode from codebehind

Answered: At this moment the SelectMode has to be changed on the client side: nav.selectMode = "month"; nav.update(); Another option is to place the DayPilotNavigator control inside an UpdatePanel.

problem with overlaps in Server.

Answered: The Scheduler supports client-side overlap detection (https://doc.daypilot.org/scheduler/event-overlapping/). This helps with real-time UI feedback but it's also necessary to implement server-side va...

How do I disable TimeRangeSelection for a particular date (Ex sunday)

How do I disable TimeRangeSelection for a particular date (Ex sunday) Can i select particular time slots rather than all time slots? Is there any way I can call the daypiloyt modal window from a MVC ...

New Version Release For Paid Versions

Answered: Richard, You can download it in the customer area: https://www.daypilot.org/customers/

How do you delete an event?

Answered: The Lite edition doesn't support the built-in "delete" icon like the Pro version: https://doc.daypilot.org/calendar/event-deleting/ The best way would probably be to add a "Delete" button to the moda...

Show "event" only as changed background color

Answered: If you want to set a color of the grid cells you can use OnBeforeEventRender event handler: https://doc.daypilot.org/scheduler/cell-customization/ Generating a special type of event with a custom col...

External Drag and Drop Event

How to check if user drop event out of scheduler for cancel. Because I want to remove css class form resource. Thank you so much.

Change row color when event drag

Answered: You can highlight the original row using onEventMoving event handler. In the ASP.NET MVC you can set this event handler using EventMovingJavaScript property: https://doc.daypilot.org/scheduler/event-...

Pro License concerned

Answered: The "DEMO" label indicates that you are using the trial version of DayPilot Pro. If you want to use the Pro version you'll need to buy a license. The trial period is limited to 60 days.

add one more TextField

Answered: If you want to customize the event text using multiple fields of the data source you can use BeforeEventRender event handler: https://doc.daypilot.org/calendar/event-customization/

start hour in calendar display

Answered: You can using DayBeginsHour and DayEndsHour properties to control the start and end hour: https://doc.daypilot.org/calendar/overnight-scheduling/
Previous Questions 2321-2340 of 5260 Next