React Formik Tutorial - 38 - Date Picker

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 29

  • @rauldeandrade
    @rauldeandrade 4 роки тому +5

    Thank you so much for explaining every relevant point in detail. I couldn't have understood this components' intricacies if it wasn't for your careful explanation. I really appreciate it.

  • @thru_and_thru
    @thru_and_thru 2 роки тому +2

    You are an absolute legend!! Thank you so much for this series.

  • @FernandoRuiz-ps2yq
    @FernandoRuiz-ps2yq 4 роки тому +4

    Can you add a video on how to handle file uploads and how to get the filename size etc.. when the file is selected?

  • @eyotajr
    @eyotajr 4 роки тому +3

  • @iUmerFarooq
    @iUmerFarooq 4 роки тому +1

    So cool. Create some practical form as you said in the video. Form using Material UI + Formik if possible.
    Thank you

  • @kenyonyozi
    @kenyonyozi Рік тому

    Thank you 🙏

  • @jeromegee
    @jeromegee 3 роки тому

    Another gem added to mah treasury. Thank Vishwas!

  • @stephankarl5855
    @stephankarl5855 3 роки тому

    Thanks for your series man, was really helpful.

  • @jahanzaibhussain7598
    @jahanzaibhussain7598 4 роки тому +3

    Thank you so much bro for such a good series..

    • @SACHIN-gd6zy
      @SACHIN-gd6zy 4 роки тому

      React is useless, uwill ended up with 100 npm packages.....

  • @pilatec
    @pilatec 2 роки тому +1

    Thank you so much for this extremely informative series.
    --Btw: My datepicker seem to be not getting css. Any particular cause for that

  • @reactguy
    @reactguy 3 роки тому

    Thank you very much!

  • @azfarkhan8936
    @azfarkhan8936 Рік тому +1

    Can we change the CSS of date picker calendar?

  • @DevOpsHasan
    @DevOpsHasan 3 роки тому +1

    I am in Bangladesh it still showing 6 hour time difference. Not the time I just select. How to get the date and time I select? I do not require GMT adjustment.

  • @vognercee
    @vognercee Рік тому

    In the DatePicker.js file there is a className="form-control">; there is no CSS class by that name in react-datepicker/dist/react-datepicker.css. What is the source?

  • @sakinabhimani922
    @sakinabhimani922 2 місяці тому

    Can i use this date picker for creating calender? And can i use proper css for this

  • @csbhagwant
    @csbhagwant Рік тому +2

    birthDate: Yup.date().required('Date is required').nullable() - This line is not getting the ErrorMessage text . How to correct it??

  • @argammarkosyan1944
    @argammarkosyan1944 2 роки тому

    Please type in the field instead of select from the datepicker.

  • @Manideep_0240
    @Manideep_0240 3 роки тому

    Is this date picker working on IE 11 or any other web browsers other than chrome edge and firefox

  • @inquisitor5912
    @inquisitor5912 Рік тому

    I have an error when submitting an empty form (
    react-dom.development.js:14887 Uncaught Error: Objects are not valid as a React child (found: object with keys {email, description, selectOption, radioOption, checkboxOption, birthDate}). If you meant to render a collection of children, use an array instead.

  • @pritidilipkumarparikh4551
    @pritidilipkumarparikh4551 3 роки тому

    please share link for this code Repo

  • @phpisdead
    @phpisdead 2 роки тому

    This not working ;( error Uncaught RangeError: Invalid time value

  • @brijeshkanchan9776
    @brijeshkanchan9776 3 роки тому +1

    Required validation is not working for array.. Can anyone please help me.. Yup.array().required('Required!')

    • @ГошаШариков-ы5т
      @ГошаШариков-ы5т 3 роки тому +3

      @Uladzimir Losich yup.array().min(1, "Required") if you still need

    • @ravisolanke4495
      @ravisolanke4495 3 роки тому +1

      well, you can create your own validation :
      const validateCheckbox =value=>{
      let error;
      if(value.length < 1)
      error ="Required"
      return error
      }
      and you can passed it like this

  • @davidnirmal971
    @davidnirmal971 4 роки тому +1

    {(props) => {
    const { field, form } = props;
    const { value } = field;
    const { setFieldValue, values } = form;
    return (

    setFieldValue("startdate", date)
    }
    />
    );
    }}
    I am using field array, I am not able to assign the date to my date field. Anyone pls help me. How do I assign the date to the required place,

  • @e_viskhan
    @e_viskhan 2 роки тому

    Thank you so much!