-
Using For example the official async sample shows the behaviour - if you enter text and then select a result, there will be a network request to |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
IMO this is expected behavior so that the ComboBox can get the list of results that matches the newly selected text. For example, a slightly contrived example:
If you really need to avoid the network request from being sent when you make a selection change, you can try tracking/setting a flag in super rough example (untested):
|
Beta Was this translation helpful? Give feedback.
IMO this is expected behavior so that the ComboBox can get the list of results that matches the newly selected text. For example, a slightly contrived example:
If you really need t…