You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React strap Table
I'm using this for react strap table, and it takes around 40 to 50 seconds to resize. Is there any thing i can do ?
The text was updated successfully, but these errors were encountered:
greyblackhat
changed the title
Takes a lot of time to initialize if there are more than 800 columns
Takes a lot of time to initialize if there are more than 500 columns
Jun 1, 2021
function debounce(func){
//used to prevent firing window onresize "while the window is resized", e.g. wait 100ms for no size change and only then execute the function
var timer;
return function(event){
if(timer) clearTimeout(timer);
timer = setTimeout(func,500,event);
};
};
$(window).on('resize.'+SIGNATURE, debounce(onResize));
React strap Table
I'm using this for react strap table, and it takes around 40 to 50 seconds to resize. Is there any thing i can do ?
The text was updated successfully, but these errors were encountered: