Re: [elm-discuss] Noticeable lag when working with a model that contains large dataset

2017-04-03 Thread Jais Cheema
Thanks for that Aaron, Html.Lazy fixed it. I had never used that until now but that seems very useful utility  I did do the iteration check and made sure that the form wasn't affecting the list but was thinking along the lines that every update would have to recreate the model record, with

Re: [elm-discuss] Noticeable lag when working with a model that contains large dataset

2017-04-03 Thread Aaron VonderHaar
Hi! The first thing I'd check is whether your view or update functions end up doing O(n) operations (like iteration) with the large list. (Perhaps searching through it for some reason to do validation as the form changes? If that's the problem, then you'll want to consider alternate data