Coder Social home page Coder Social logo

Comments (12)

Tushant avatar Tushant commented on May 26, 2024 14

You can copy paste this reducer to see if it works or not. Just for your ease to know if your issue will solve by setting reducer or not. If not then we can further discuss.

import { reducer as reducerForm } from 'redux-form';

const rootReducer = combineReducers({
 form: reducerForm
});

export default rootReducer;

from redux-form-material-ui.

zakdances avatar zakdances commented on May 26, 2024 4

@Tushant Looks like it's working now with your suggestion. Thanks for the help. What was confusing me was the form key. It can't be given a different name...it must be written as form. And there was no error message to offer a clue to my mistake.

from redux-form-material-ui.

zakdances avatar zakdances commented on May 26, 2024 1

@Tushant

import * as React from 'react';

import './AddRowForm.scss';

import { reduxForm, Field } from 'redux-form'

import {
  TextField
} from 'redux-form-material-ui'

class AddRowForm extends React.Component<any, any> {
  render() {
    return (
      <form>
        <Field name="firstname" component={TextField} hintText="First Name"/>
        <Field name="lastname" component={TextField} hintText="Last Name"/>

        <Field name="occupation" component={TextField} hintText="Occupation"/>
        <Field name="username" component={TextField} hintText="Username"/>

      </form>
    )
  }
}


export default reduxForm({
  form: 'myForm'
})(AddRowForm as any)


from redux-form-material-ui.

zakdances avatar zakdances commented on May 26, 2024 1

@Tushant I think my problem is that I haven't set up the proper Redux-Form reducer. I'm investigating now.

from redux-form-material-ui.

zazapeta avatar zazapeta commented on May 26, 2024

Remove all of these :
onChange={(e) => this.setState({ deviceName: e.target.name })}

Redux-form handle change for you. You do not need to handle it.
If you need to get the value of a field, use 'ref' or read it from the 'store'.

from redux-form-material-ui.

Tushant avatar Tushant commented on May 26, 2024

Yes removing onChange works. Thanks

from redux-form-material-ui.

zakdances avatar zakdances commented on May 26, 2024

I'm not using onChange and typed text doesn't appear.

from redux-form-material-ui.

Tushant avatar Tushant commented on May 26, 2024

Can you show your code, please?

from redux-form-material-ui.

Tushant avatar Tushant commented on May 26, 2024

What error do you get?

from redux-form-material-ui.

yoslev avatar yoslev commented on May 26, 2024

Thanks Tushant - I missed some important detail.
Didn't know that I have to combine reducer " form: reducerForm"
const rootReducer = combineReducers({
form: reducerForm
});
I keyed in text and nothing displayed on fields.
I spent 1.5 hours for finding your tip!
Thanks.

from redux-form-material-ui.

acampbell4444 avatar acampbell4444 commented on May 26, 2024

yes

from redux-form-material-ui.

nuprakash avatar nuprakash commented on May 26, 2024

its not working for me

from redux-form-material-ui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.