0

Is there any way how to globally delay any KnockoutJS processing / redrawing as long as I keep changing any observable in the model?

Basically, knockout should observe all changes to all observables and if there is no change to any observable for a period of 50ms only then it can start processing the changes.

Oldrich Svec
  • 4,191
  • 2
  • 28
  • 54

1 Answers1

0

Nope, there is no global way to throttle / rate-limit / delay. You can only rate limit individual observables.

Jeroen
  • 60,696
  • 40
  • 206
  • 339