Results 105 comments of Jannik Buschke

@iamvanja sure! However I think this is mainly an Ant Design issue. See also #25 This library just composes ant design + formik. So ideally both features/bugs triple through. If...

I am thinking about reexporting all core components wrapped in a FormItem. This removes a lot of boilerplate and nesting. If the FormItem and core components api does not overlapp...

I publish a v2.1 beta version that exports form-item wrapper components for each core component: https://github.com/jannikbuschke/formik-antd/tree/beta/2.1#combined-formitem-and-input-components use `import { Input } from 'formik-antd/es/form-items'` instead of the normal imports.

This is by design (https://github.com/jannikbuschke/formik-antd#submitting-and-resetting-forms). If the button would be disabled, the user might not see any validation feedback, as it is usually only rendered if the corresponding field has...

hi @liuguangsen0409, it should be possible to use strings with dotnotation, maybe your validationerrors are not correct? can you share some more code or provide a minimal reproduction with codesandbox?

You have nested FormItems which probably does not work. remove the one with name="osVersion" and see if it works.

to the first point: you should remove the outer FormItem altogether (not onlay remove the name). FormItems should not be nested. If you want to access nested form values, just...

I think this is by design. The lastname field has not been touched (lets assume it might have been overlooked by the user). In this case validation errors are not...

Hi @afk-mario , Thanks for bringing this up. I think the problem is on our side and might also be present on the WeekPicker