Our flexible Kanban board for managing tasks with drag drop


Post by jasonlunsford »

Hi Marcio / Mats,

Please find the attached sample code demonstrating this defect.

Thanks!


Post by marcio »

Hey Jason,

Thanks for the example, I checked the configuration and it looks correct, so it's a bug that we'll look into here https://github.com/bryntum/support/issues/7336

Best regards,
Márcio


Post by jasonlunsford »

Hi Marcio,

So I do NOT want to confuse the bug I just reported, but there is a SECOND bug related to this one. Please note when you click the button to add the swimlanes, that the COUNT of cards within the swimlane does NOT appear. You can reproduce this in the sample I provided.


Post by marcio »

Thanks Jason for the report, I added a note for verification if it's related or if it needs a new ticket.

Best regards,
Márcio


Post by jasonlunsford »

Hi Marcio,

I tried manipulating the collapse / expand state using API, as the code below shows. I got the same error message as I reported above.

    boardRef.current.instance.swimlanes.forEach(async (lane) => {
      if (isOpen) {
        await boardRef.current.instance.collapse(lane);
      } else {
        await boardRef.current.instance.expand(lane);
      }
    });

Hopefully that helps!


Post Reply