react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
📣-announcements
Handling nested object validations
zod validations (more like a general issue). Im having a field like schema.output . output is like an object with different values object: { value: string, id: string} and i want to use the AppField object and then display the errors inside. But whenever im accessing the "top level", meaning output the errors are not there, because theyre happening on e.g. value with min(1). unless i dig into field.form.stateand extract the errors from there, i dont see any way to handle those "complex" forms. Its crucial for me, because im running into many scenarios where i need to validate an object rather than one field from the object, since theyre quite complex objects.
cheers and thanks in advance 🙂...Philosophy w/ respect to design systems
We do not want you to use form.Field in normal app code, but instead wrap it into your codebase in a design systemWhy is this desirable, is it still the stance of the library? Not all inputs are form inputs; the value/onChange may just need to derive from normal state. I'm also not sure I want to tie my design system components to one particular form library. Curious to hear more context!...
Duplicate Errors when using same Schema for onChange and onMount validation
Use form Composition in solid js
Cant getFieldValue(array[idx]) ?
Form Composition - withForm - TypeScript error
withForm (which is great), I decided to do a relatively simple test. Unfortunately, I am encountering a TypeScript error. So I would like to see if anyone knows if this is due to a problem of understanding on my part, or a potential bug that could be fixed....How to derive values to preserve form state integrity
Basic validation example
Relaunch validation even if there is already an error, and reset validation of certain fields
Get fieldMeta from array element
people[] and need to see if people[i] has any changes within it, there doesn't seem to be meta associated with that.
I either have the entire people array isDirty or I can see specific subFields like people[i].name is dirty, but no way to check if a particular element has any changes?...onSubmit callback does not get invoked - React Native
How do I type my form if I need to pass it to other components?
v.45.1 and type errors

Getting all errors from field AND subfield
<form>#getFieldMeta() on all subpaths, or get all errors and reduce them based on my parent field's name.
Is there an easier way?
Example of my implementation:...should blur trigger onChange validation?
onChange validation errors when clicking into and then out of a field (but without changing the value). Looking at the code it seems like if a field was never previously touched, then blurring the field causes the "change" validation to run. Does this seem accurate? Did I miss something in the docs re: this behavior?
https://github.com/TanStack/form/blob/main/packages/form-core/src/FieldApi.ts#L1602...field.state.meta.errors type is undefined[] when using Form level schema only?
Can't use Zod/Yup schema for form level validator?
Is this a bug with removeValue on nested array elements?
Equivalent to setError?
react-hook-form now, and my foel has recaptcha. I am keeping track of recaptcha in the form state, like any other input. I was using setValue() to set the value in the form state after the widget has been clicked and setError() when the server was returning an error related to recatpcha. Using TanStack Form, I replaced setValue() with setFieldValue() but I do not know how to replace setError(). Any tips? tahnk you 🙂"has been changed since submission" state?