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
Non-input field types do not send data using NextJS server action.
For example, when using shadcn Calendar component, with both selected and onSelect filled in, value is not sent using FormData.
Workarounds like <input type="hidden" name={field.name} value={field.state.value} /> need to be added in order for it to work.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Non-input field types do not send data using NextJS server action.
For example, when using shadcn Calendar component, with both selected and onSelect filled in, value is not sent using FormData.
Workarounds like
<input type="hidden" name={field.name} value={field.state.value} />
need to be added in order for it to work.When using form.onSubmit, it works fine.
Any suggestions of better approach?
Beta Was this translation helpful? Give feedback.
All reactions