Hello! I'm just starting out with ng and I need to make an autocomplete textbox that will initiate an AJAX call when the text is changed. The catch is that the minimum length required to trigger the AJAX call is 3 characters. However, once the user enters the 4th, 5th, or 6th character, it should not trigger another AJAX call but instead sort from the previous data. In summary, the AJAX call should only occur when the first 3 characters are changed (and there must be at least 3 characters).
Thank you in advance!