Our flexible Kanban board for managing tasks with drag drop


Post by jasonlunsford »

Hey team,

Strange one here. The counter that adds up the tasks in a given swimlane is wrong - sometimes VERY wrong (off by more than one or two). Is there a way to disable this feature? To be clear I'm talking about the number here, reporting (incorrectly) that there are 25 tasks in the Align swimlane (there are actually 19).

Screen Shot 2024-03-20 at 13.56.00.png
Screen Shot 2024-03-20 at 13.56.00.png (11.07 KiB) Viewed 234 times

I recognize that troubleshooting this without sample code is tough; I can't post our code base in public forums. However if you can tell me specific areas of the code you need to see I can furnish some code snippets.

I will share this. I create the swimlanes programmatically, using code that looks like this:

          boardRef.current.instance.swimlaneField = 'engagementPhaseId';
          boardRef.current.instance.swimlanes.removeAll();
          boardRef.current.instance.swimlanes.add(
            phases.map((phase: any) => {
              return {
                id: phase.id,
                text: phase.name,
                collapsible: true,
              };
            })
          );

Any help is - as always - very appreciated.


Post by marcio »

Hey jasonlunsford,

Thanks for reaching out.

You can send us a test case by email at support[at]bryntum.com

Are you able to reproduce that behavior on one of our demos? Or provide some data samples for us?

Best regards,
Márcio


Post Reply