-
Hi I noticed if I go to the example and type "John Smith" and choose one of the options everything in the box gets cleared out. How can I stop that from happening? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I see "SelectAndClearTextQuery" and TextQuery I think i just need to change SelectAndClearTextQuery ? I am not sure What TextQuery does or if it is needed. |
Beta Was this translation helpful? Give feedback.
-
Also, why is TextQueryTriggered only "on enter" and not on "text changed" or blur? It seems like I have to hit "Enter" to record the value they typed. Do I need to use the TextQueryChanged as well as the Triggered or one or the other? |
Beta Was this translation helpful? Give feedback.
Well none of the controls really meet exactly my needs, so I got to sort of bend them a bit. I have 3 "boxes" on my page that all must have "suggestions" the first box is an autosuggest box as they must choose from the results that come back.
The other 2, I am making them as "searchbox" as I need to allow free text as they maybe looking for a very general result (ie they probably ignore the suggestions that come back) or they may take the suggestion.
All 3 of the boxes are used to make one search. IE at the bottom I have a "search button". That is why "enter" does not really work as they probably will tab to the next box. Then click the "search"
This is what I came up with and it seems to…