Formik FieldArray not rerendering on updated values even with enableReinitialize2019 Community Moderator ElectionCan you force a React component to rerender without calling setState?Updating Child Component Via Change of Props from Parent in ReactReactJS: Best way to check state values and update render based on state?Formik FieldArray - dynamically generate nameapollo client cache updates but ui does notFormik FieldArrayReact Component Function Comparisonreact-virutalized AutoSizer rerender issueSet default value Field Array in FormikReact setState doesn't rerender on mobile only?

Does Mathematica reuse previous computations?

Gravity magic - How does it work?

Why did it take so long to abandon sail after steamships were demonstrated?

What exactly is this small puffer fish doing and how did it manage to accomplish such a feat?

My adviser wants to be the first author

Time travel from stationary position?

How could a scammer know the apps on my phone / iTunes account?

Is it normal that my co-workers at a fitness company criticize my food choices?

What did Alexander Pope mean by "Expletives their feeble Aid do join"?

Why doesn't using two cd commands in bash script execute the second command?

Why Choose Less Effective Armour Types?

Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?

How do anti-virus programs start at Windows boot?

How to deal with taxi scam when on vacation?

What do Xenomorphs eat in the Alien series?

What is the significance behind "40 days" that often appears in the Bible?

How to deal with a cynical class?

How do I hide Chekhov's Gun?

Employee lack of ownership

How to create the Curved texte?

Brexit - No Deal Rejection

It's a yearly task, alright

Python if-else code style for reduced code for rounding floats

Professor being mistaken for a grad student



Formik FieldArray not rerendering on updated values even with enableReinitialize



2019 Community Moderator ElectionCan you force a React component to rerender without calling setState?Updating Child Component Via Change of Props from Parent in ReactReactJS: Best way to check state values and update render based on state?Formik FieldArray - dynamically generate nameapollo client cache updates but ui does notFormik FieldArrayReact Component Function Comparisonreact-virutalized AutoSizer rerender issueSet default value Field Array in FormikReact setState doesn't rerender on mobile only?










0















Formik enableReinitialize documentation




Default is false. Control whether Formik should reset the form if initialValues changes (using deep equality).




I'm passing in an object (through props) that I set in
initialValues, the object definition is:




"shoppingList":
"title": "",
"items": [ "quantity": 0, description: "" ]




I'm using this in a Formik FieldArray component. I'm updating the quantity in a button onClick handler using an inline arrow function that directly mutates the item via current element param in items.#map callback.



Formik is not rerendering the form to reflect the updated quantity. Formik knows about the quantity as when I submit the form the component storing quantity is rerendered to the correct updated quantity.










share|improve this question




























    0















    Formik enableReinitialize documentation




    Default is false. Control whether Formik should reset the form if initialValues changes (using deep equality).




    I'm passing in an object (through props) that I set in
    initialValues, the object definition is:




    "shoppingList":
    "title": "",
    "items": [ "quantity": 0, description: "" ]




    I'm using this in a Formik FieldArray component. I'm updating the quantity in a button onClick handler using an inline arrow function that directly mutates the item via current element param in items.#map callback.



    Formik is not rerendering the form to reflect the updated quantity. Formik knows about the quantity as when I submit the form the component storing quantity is rerendered to the correct updated quantity.










    share|improve this question


























      0












      0








      0








      Formik enableReinitialize documentation




      Default is false. Control whether Formik should reset the form if initialValues changes (using deep equality).




      I'm passing in an object (through props) that I set in
      initialValues, the object definition is:




      "shoppingList":
      "title": "",
      "items": [ "quantity": 0, description: "" ]




      I'm using this in a Formik FieldArray component. I'm updating the quantity in a button onClick handler using an inline arrow function that directly mutates the item via current element param in items.#map callback.



      Formik is not rerendering the form to reflect the updated quantity. Formik knows about the quantity as when I submit the form the component storing quantity is rerendered to the correct updated quantity.










      share|improve this question
















      Formik enableReinitialize documentation




      Default is false. Control whether Formik should reset the form if initialValues changes (using deep equality).




      I'm passing in an object (through props) that I set in
      initialValues, the object definition is:




      "shoppingList":
      "title": "",
      "items": [ "quantity": 0, description: "" ]




      I'm using this in a Formik FieldArray component. I'm updating the quantity in a button onClick handler using an inline arrow function that directly mutates the item via current element param in items.#map callback.



      Formik is not rerendering the form to reflect the updated quantity. Formik knows about the quantity as when I submit the form the component storing quantity is rerendered to the correct updated quantity.







      reactjs formik






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 6 at 19:49







      Gibrahh

















      asked Mar 6 at 19:18









      GibrahhGibrahh

      63




      63






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Fixed by using arrayHelpers.#replace instead of directly updating the items.

          arrayHelpers documentation



          The answer is deep equality is value based. I'm unsure whether the term deep equality is ever valid in respect to reference based equality, but my confusion led to me asking that way anyway.



          Either directly mutating the data in an item object in the array or immutably updating works as expected in this case. Unsure whether this would be different if the data I was updating was not primitive - still fairly new to the wonderfully scary world of JS.



          In this case also works with enableReinitialize or without.



          Full working example here, both mutating and immutable update logic used (one for minus quantity, other for plus quantity):
          https://codesandbox.io/s/k2wzk9q605?fontsize=14






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55030653%2fformik-fieldarray-not-rerendering-on-updated-values-even-with-enablereinitialize%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Fixed by using arrayHelpers.#replace instead of directly updating the items.

            arrayHelpers documentation



            The answer is deep equality is value based. I'm unsure whether the term deep equality is ever valid in respect to reference based equality, but my confusion led to me asking that way anyway.



            Either directly mutating the data in an item object in the array or immutably updating works as expected in this case. Unsure whether this would be different if the data I was updating was not primitive - still fairly new to the wonderfully scary world of JS.



            In this case also works with enableReinitialize or without.



            Full working example here, both mutating and immutable update logic used (one for minus quantity, other for plus quantity):
            https://codesandbox.io/s/k2wzk9q605?fontsize=14






            share|improve this answer





























              0














              Fixed by using arrayHelpers.#replace instead of directly updating the items.

              arrayHelpers documentation



              The answer is deep equality is value based. I'm unsure whether the term deep equality is ever valid in respect to reference based equality, but my confusion led to me asking that way anyway.



              Either directly mutating the data in an item object in the array or immutably updating works as expected in this case. Unsure whether this would be different if the data I was updating was not primitive - still fairly new to the wonderfully scary world of JS.



              In this case also works with enableReinitialize or without.



              Full working example here, both mutating and immutable update logic used (one for minus quantity, other for plus quantity):
              https://codesandbox.io/s/k2wzk9q605?fontsize=14






              share|improve this answer



























                0












                0








                0







                Fixed by using arrayHelpers.#replace instead of directly updating the items.

                arrayHelpers documentation



                The answer is deep equality is value based. I'm unsure whether the term deep equality is ever valid in respect to reference based equality, but my confusion led to me asking that way anyway.



                Either directly mutating the data in an item object in the array or immutably updating works as expected in this case. Unsure whether this would be different if the data I was updating was not primitive - still fairly new to the wonderfully scary world of JS.



                In this case also works with enableReinitialize or without.



                Full working example here, both mutating and immutable update logic used (one for minus quantity, other for plus quantity):
                https://codesandbox.io/s/k2wzk9q605?fontsize=14






                share|improve this answer















                Fixed by using arrayHelpers.#replace instead of directly updating the items.

                arrayHelpers documentation



                The answer is deep equality is value based. I'm unsure whether the term deep equality is ever valid in respect to reference based equality, but my confusion led to me asking that way anyway.



                Either directly mutating the data in an item object in the array or immutably updating works as expected in this case. Unsure whether this would be different if the data I was updating was not primitive - still fairly new to the wonderfully scary world of JS.



                In this case also works with enableReinitialize or without.



                Full working example here, both mutating and immutable update logic used (one for minus quantity, other for plus quantity):
                https://codesandbox.io/s/k2wzk9q605?fontsize=14







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 6 at 21:25

























                answered Mar 6 at 21:16









                GibrahhGibrahh

                63




                63





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55030653%2fformik-fieldarray-not-rerendering-on-updated-values-even-with-enablereinitialize%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

                    Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

                    Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved