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
-
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