Automatic jump when creating tasks with start on weekends?

Hello good morning I hope you can help me…
(gantt setup monday to friday)

QUESTION 1: In the lightbox there is a setting for remove all weekends (example: january 28, january 29) of the date picker…

QUESTION 2:
I have a Monday to Friday setup, if task creation starts on a weekend (Saturday or Sunday) you can automatically moved to Monday with some configuration?

EXAMPLE VIDEO FOR THE TWO QUESTIONS https://www.dropbox.com/s/tbqzsniupmuhdzd/gantt.mp4?dl=0

Hello Dan,

QUESTION 1: In the lightbox there is a setting for remove all weekends (example: january 28, january 29) of the date picker…

No, there is no built-in way to do that. You need to implement a custom solution by using the Gantt API and Javascript. Or you can use a 3rd-party date picker that supports hiding the weekends.

Here is an example with the DHTMLX Suite’s date picker:

.dhx_calendar-day--weekend {
  visibility: hidden;
}

.dhx_calendar-weekday:nth-child(1),
.dhx_calendar-weekday:nth-child(7) {
  visibility: hidden;
}

QUESTION 2:
I have a Monday to Friday setup, if task creation starts on a weekend (Saturday or Sunday) you can automatically moved to Monday with some configuration?

You can enable the work_time feature to exclude non-working days from the task duration. To move the task to a working date when you create or drag it, you can enable the correct_work_time parameter:

You can check how it works in the following snippet: