Reputation: 1
I have a problem setting ComboBox items property.
I found I can use Office365User.SearchUser({searchTerm: ComboBox1.SearchText, top:20});
and then It can search from Office365User Connector.
but this way can't apply to my Custom connector.
I already create a custom connector and add actions like MyConnector.SearchCategory({keyword: ComboBox1.SearchText});
And then, I set it to my ComboBox items, but it will alert an error message:
Behavior function in a non-behavior property. You can't use this property to change values elsewhere in the app
I think setting Collect(CategoryList, MyConnector.SearchCategory({keyword: ComboBox1.SearchText}));
on the OnSelect event is not the right answer for me.
Could you tell me how can I do now? :'(
I want to search from searchText and wait for the list from API.
Upvotes: 0
Views: 323
Reputation: 981
You could try this:
Upvotes: 0