I'm working on a project where as form.select is used and I want to be able to pull more data when at the bottom of the list. Is there a way to do this? If so could you point me in the right direction.
I have already tried the Visibility behavior with Semantic and have found little luck.
<Visibility offset={[10, 10]} onUpdate={this.handleUpdate}>
<Form.Select
label="Example"
required={true}
placeholder="Test Placeholder"
noResultsMessage="No results found for the selected product"
fluid={true}
search={true}
selection={true}
clearable={true}
value={value || ""}
options={this.state.valueList}
onChange={this.onChange.bind(value, "value")}
/>
</Visibility>
The Visibility just tracks the Form.Select
on the page, not the dropdown selector.