You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, had a question: I've been making progress on an app that displays a list of results. It also has some radio buttons and checkboxes that are intended to allow the user to refine the results set. I've figured out how to manage the search options as they are updated and am using that to generate a new list of things to display.
But I'm running into a problem at that point. I haven't figured out how to "re-display" the results.
SearchComponent
ResultsComponent
ResultComponent1
ResultComponent2
When the SearchComponent is updated I want to generate a new ResultsComponent to display the new search results. Is there some way to do this? I've been through the docs and have done a lot of experimenting but haven't found a way to do it yet. Sorry if the question is a little too vague or naive, I'm sort of new to all of this.
Thanks
The text was updated successfully, but these errors were encountered:
From what I understand you need to instantiate these subwidgets on the fly and have trouble doing that, right? You probably have an vbox or something for these resultcomponents to appear in. You can then instantiate them and set parent to the resultcomponent. Or use something like:
Hi, had a question: I've been making progress on an app that displays a list of results. It also has some radio buttons and checkboxes that are intended to allow the user to refine the results set. I've figured out how to manage the search options as they are updated and am using that to generate a new list of things to display.
But I'm running into a problem at that point. I haven't figured out how to "re-display" the results.
When the SearchComponent is updated I want to generate a new ResultsComponent to display the new search results. Is there some way to do this? I've been through the docs and have done a lot of experimenting but haven't found a way to do it yet. Sorry if the question is a little too vague or naive, I'm sort of new to all of this.
Thanks
The text was updated successfully, but these errors were encountered: