I have a small app filtering a list of items by providing several choices for different attributes in combobox (select) elements. Everything works fine selecting and deselecting single combobox elements, but since I introduced a required button to "Reset Filter settings" which resets all combobox elements to null I get poor performance. It seems that each single statement modifying a comboxbox is triggering a refresh of the complete list.
How can I tell knockout to STOP updating the observables, have all combobox elements reset to null and then tell knockout to RESUME updating or initially TRIGGER the update myself.
Any ideas?
Thanks Andreas