hello,i'm using this lib and like it more and more.
but i have a scene:
i will pass rows data from backend to frontend frequently,the data will more and more in frontend,so i provide some filters for user to show what they need,and i will do not control the data from backend,because user will change their filters in any time.
so ,when some new data from back,will call concat method to add into grid data,like:data = data_new.concat(data),then i will call "filter-rows" to determine which can show,which can not show,so you can get one conclusion:the old data will be calculated every time,it is very bad and low-effient,if the data from back is very frequently,it even worse:some rows will still show even if it should be hidden
so i wish get help from any experienced one
thank you in advance
hello,i'm using this lib and like it more and more.
but i have a scene:
i will pass rows data from backend to frontend frequently,the data will more and more in frontend,so i provide some filters for user to show what they need,and i will do not control the data from backend,because user will change their filters in any time.
so ,when some new data from back,will call concat method to add into grid data,like:data = data_new.concat(data),then i will call "filter-rows" to determine which can show,which can not show,so you can get one conclusion:the old data will be calculated every time,it is very bad and low-effient,if the data from back is very frequently,it even worse:some rows will still show even if it should be hidden
so i wish get help from any experienced one
thank you in advance