Our flexible Kanban board for managing tasks with drag drop


Post by licjapodaca »

Hi there, when I do a right click over a section of the body column and then do a hold left click with my mouse, appears the blue dotted squares to select multiple cards but after I release the mouse the blue square dotted is always visible like so:

Screen Shot 2021-06-21 at 12.36.10 p.m..png
Screen Shot 2021-06-21 at 12.36.10 p.m..png (130.69 KiB) Viewed 865 times

Even in your examples have the issue.

Regards


Post by licjapodaca »

This behavior persist if you move to another browser tab and then go back to our app and move with the mouse appears this blue square dotted.


Post by johan.isaksson »

Hi,

Reproduced, ticket for the bug created https://github.com/bryntum/support/issues/3083.

Thanks for reporting!

Best regards,
Johan Isaksson

Post by licjapodaca »

Hi @johan, I found a workaround in the meantime with the following code in my case with ExtJS:

Ext.on('mouseup', function(e) {
    while (document.getElementsByClassName('b-dragselect-rect').length > 0) {
       document.getElementsByClassName('b-dragselect-rect')[0].remove();
    }
});

Regards


Post Reply