Autocomplete, Dropdown, Select with dymamic options using Schema. Is it possible? how? Please extend doc section #1150
VladimirFrunza
started this conversation in
General
Replies: 1 comment
-
There is already docs for dynamic options: https://formkit.com/inputs/autocomplete#dynamic-options The schema is the way schema works with functions from https://formkit.com/essentials/schema#references const schema = {
$formkit: 'autocomplete',
options: '$searchMovies'
}
const data = {
searchMovies: ({ search }) => {
console.log(search)
return []
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How to create Autocomplete, Dropdown, Select with dymamic options using Schema. Is it possible? how? Please extend doc section?
Beta Was this translation helpful? Give feedback.
All reactions