Search found 13 matches

Awesome, that did the trick! Thank you very much!

Hi all, I have created a column which extends a CheckColumn. I only want the checkbox to render for certain rows. Here is the column I have created. (Using BryntumGantt version 2.1.4) export class CompleteColumn extends CheckColumn { static get type() { return "complete"; } static get defa...
Hi all, We are experiencing an odd behavior where dependency lines are persisting after the relationship was updated/removed. The relationship is still listed in the dependency column, though the Task Edit modal properly reflects the change. Is there some sort of dependency flush that needs to be ca...
Some extra info: We first noticed this behavior because we were receiving the following error (which could probably use some better context): *calculateDurationPure() { const startDate = yield this.$.startDate; const endDate = yield this.$.endDate; if (!startDate || !endDate) return null; if (startD...

Thanks for the reply Pavel.

Just to clarify, we'd like to set the end date to Monday, so in your example we'd want to see:
Start date 2020-07-31 00:00:00 (Friday) + 1 day duration to have an end date of 2020-08-03 00:00:00 (Monday). Is this possible?

Thanks,
Brandon

Hi all, We are trying to allow our gantt chart to interpret durations and end dates as such: Given Saturday and Sunday are not considered work days and a Task with a start date of Friday, July 1st with a 1 day duration. Then we would expect the end date be reflected as Monday, July 4th. Currently th...

Looks like it was our issue. We should've been either omitting field or using field: fullDuration

I was able to get it working properly and it appeared to be tied to how we were defining our columns... Specifying the field property in the Column definitions seems to cause the issue. If I remove the field property from the below example, then the changes to the duration cell work as expected. gan...

Hi all,

Is there a way to enforce the duration unit on duration fields to only be days? We do not want to handle weeks/months/etc...

Thanks!

(This is on gantt-2.1.4)