Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

state tabActive changes when child components change state #33

Open
cehuff opened this issue Jul 27, 2015 · 0 comments
Open

state tabActive changes when child components change state #33

cehuff opened this issue Jul 27, 2015 · 0 comments

Comments

@cehuff
Copy link

cehuff commented Jul 27, 2015

When simple input components are added to tabs, and a state change on them is called, the tabActive state of Tabs is reset.

Solution: delete newProps.tabActive in componentWillReceiveProps:

  componentWillReceiveProps: function(newProps){
    delete newProps.tabActive; /* don't change tabs when child props change */
    console.log("componentWillReceiveProps newProps.tabActive:"+newProps.tabActive);
    if(newProps.tabActive){ 
        this.setState({tabActive: newProps.tabActive}); 
    }
  },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant