Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Toggle column operation in taskboard is slow #5278

Open
chuckn0rris opened this issue Sep 20, 2022 · 0 comments
Open

Toggle column operation in taskboard is slow #5278

chuckn0rris opened this issue Sep 20, 2022 · 0 comments
Labels
bug Something isn't working forum Issues from forum large-account Reported by large customer OEM OEM customer premium

Comments

@chuckn0rris
Copy link

Forum post

Hi,

Our app can have up to 1000 cards in the board view. However, we have noticed that when a column has hundreds of tasks, collapsing it can be pretty slow. I went through the "toggleColumnCollapse" code, removed the logic to manipulate the DOM, and just kept:

      return new Promise<void>((resolve) => {
        const me = this;
        me.suspendDomTransition();
        columnRecord.collapsed = collapse;
        resolve();
        me.resumeDomTransition();
      });

It seems to have gotten super fast. Didn't seem to break anything either [yet].
Can you help me here? Am I missing any config setting or anything else?

@chuckn0rris chuckn0rris added bug Something isn't working premium forum Issues from forum large-account Reported by large customer OEM OEM customer labels Sep 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working forum Issues from forum large-account Reported by large customer OEM OEM customer premium
Projects
None yet
Development

No branches or pull requests

1 participant