React ref binding results in: TypeError: Cannot read property 'focus' of null
up vote
0
down vote
favorite
I am able to copy the example in the React docs to create a ref and then target it on Code Sandbox, but for some reason I can't replicate it in a local project. I'm using react 16.6.3 which is the latest version.
TypeError: Cannot read property 'focus' of null
SelectDonation.save_donation_amount
src/components/SelectDonation.js:19
16 | save_donation_amount () {
17 |
18 | // testing refs
> 19 | this.customDonationInput.current.focus();
| ^ 20 |
21 | // prevent pageload
22 | // grab the custom amount
Here is my component:
import React from "react";
import {Button, Modal, Form, Input, Radio} from 'semantic-ui-react';
import store from "../reducer";
export default class SelectDonation extends React.Component {
constructor(props) {
super(props);
this.customDonationInput = React.createRef();
this.save_donation_amount = this.save_donation_amount.bind(this);
}
save_donation_amount () {
this.customDonationInput.current.focus();
};
render() {
return (
<Form>
<Form.Input
type='number'
placeholder='Custom Amount'
name='donation_amount'
id='custom_amount'
ref={this.customDonationInput}
// value={store.donation_amount}
defaultValue={store.donation_amount}
/>
<Button
primary
onClick={
this.save_donation_amount
}>Next Step
</Button>
</Form>
)
}
}
From the error it seems the .current property isn't there. What could be the cause of this?
reactjs semantic-ui-react
add a comment |
up vote
0
down vote
favorite
I am able to copy the example in the React docs to create a ref and then target it on Code Sandbox, but for some reason I can't replicate it in a local project. I'm using react 16.6.3 which is the latest version.
TypeError: Cannot read property 'focus' of null
SelectDonation.save_donation_amount
src/components/SelectDonation.js:19
16 | save_donation_amount () {
17 |
18 | // testing refs
> 19 | this.customDonationInput.current.focus();
| ^ 20 |
21 | // prevent pageload
22 | // grab the custom amount
Here is my component:
import React from "react";
import {Button, Modal, Form, Input, Radio} from 'semantic-ui-react';
import store from "../reducer";
export default class SelectDonation extends React.Component {
constructor(props) {
super(props);
this.customDonationInput = React.createRef();
this.save_donation_amount = this.save_donation_amount.bind(this);
}
save_donation_amount () {
this.customDonationInput.current.focus();
};
render() {
return (
<Form>
<Form.Input
type='number'
placeholder='Custom Amount'
name='donation_amount'
id='custom_amount'
ref={this.customDonationInput}
// value={store.donation_amount}
defaultValue={store.donation_amount}
/>
<Button
primary
onClick={
this.save_donation_amount
}>Next Step
</Button>
</Form>
)
}
}
From the error it seems the .current property isn't there. What could be the cause of this?
reactjs semantic-ui-react
do you get this in browser, in unit test or maybe SSR?
– skyboyer
Nov 21 at 21:14
In browser, specifically Chrome Version 70.0.3538.77
– Sean Dezoysa
Nov 21 at 21:18
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am able to copy the example in the React docs to create a ref and then target it on Code Sandbox, but for some reason I can't replicate it in a local project. I'm using react 16.6.3 which is the latest version.
TypeError: Cannot read property 'focus' of null
SelectDonation.save_donation_amount
src/components/SelectDonation.js:19
16 | save_donation_amount () {
17 |
18 | // testing refs
> 19 | this.customDonationInput.current.focus();
| ^ 20 |
21 | // prevent pageload
22 | // grab the custom amount
Here is my component:
import React from "react";
import {Button, Modal, Form, Input, Radio} from 'semantic-ui-react';
import store from "../reducer";
export default class SelectDonation extends React.Component {
constructor(props) {
super(props);
this.customDonationInput = React.createRef();
this.save_donation_amount = this.save_donation_amount.bind(this);
}
save_donation_amount () {
this.customDonationInput.current.focus();
};
render() {
return (
<Form>
<Form.Input
type='number'
placeholder='Custom Amount'
name='donation_amount'
id='custom_amount'
ref={this.customDonationInput}
// value={store.donation_amount}
defaultValue={store.donation_amount}
/>
<Button
primary
onClick={
this.save_donation_amount
}>Next Step
</Button>
</Form>
)
}
}
From the error it seems the .current property isn't there. What could be the cause of this?
reactjs semantic-ui-react
I am able to copy the example in the React docs to create a ref and then target it on Code Sandbox, but for some reason I can't replicate it in a local project. I'm using react 16.6.3 which is the latest version.
TypeError: Cannot read property 'focus' of null
SelectDonation.save_donation_amount
src/components/SelectDonation.js:19
16 | save_donation_amount () {
17 |
18 | // testing refs
> 19 | this.customDonationInput.current.focus();
| ^ 20 |
21 | // prevent pageload
22 | // grab the custom amount
Here is my component:
import React from "react";
import {Button, Modal, Form, Input, Radio} from 'semantic-ui-react';
import store from "../reducer";
export default class SelectDonation extends React.Component {
constructor(props) {
super(props);
this.customDonationInput = React.createRef();
this.save_donation_amount = this.save_donation_amount.bind(this);
}
save_donation_amount () {
this.customDonationInput.current.focus();
};
render() {
return (
<Form>
<Form.Input
type='number'
placeholder='Custom Amount'
name='donation_amount'
id='custom_amount'
ref={this.customDonationInput}
// value={store.donation_amount}
defaultValue={store.donation_amount}
/>
<Button
primary
onClick={
this.save_donation_amount
}>Next Step
</Button>
</Form>
)
}
}
From the error it seems the .current property isn't there. What could be the cause of this?
reactjs semantic-ui-react
reactjs semantic-ui-react
edited Nov 26 at 19:21
Alexander Fedyashov
2,51311030
2,51311030
asked Nov 21 at 21:10
Sean Dezoysa
164113
164113
do you get this in browser, in unit test or maybe SSR?
– skyboyer
Nov 21 at 21:14
In browser, specifically Chrome Version 70.0.3538.77
– Sean Dezoysa
Nov 21 at 21:18
add a comment |
do you get this in browser, in unit test or maybe SSR?
– skyboyer
Nov 21 at 21:14
In browser, specifically Chrome Version 70.0.3538.77
– Sean Dezoysa
Nov 21 at 21:18
do you get this in browser, in unit test or maybe SSR?
– skyboyer
Nov 21 at 21:14
do you get this in browser, in unit test or maybe SSR?
– skyboyer
Nov 21 at 21:14
In browser, specifically Chrome Version 70.0.3538.77
– Sean Dezoysa
Nov 21 at 21:18
In browser, specifically Chrome Version 70.0.3538.77
– Sean Dezoysa
Nov 21 at 21:18
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
The error is caused because Semantic UI React's <Form.Input>
is a functional component and thus can not receive refs. Changing the element to a regular <input>
fixed the issue
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
The error is caused because Semantic UI React's <Form.Input>
is a functional component and thus can not receive refs. Changing the element to a regular <input>
fixed the issue
add a comment |
up vote
0
down vote
accepted
The error is caused because Semantic UI React's <Form.Input>
is a functional component and thus can not receive refs. Changing the element to a regular <input>
fixed the issue
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The error is caused because Semantic UI React's <Form.Input>
is a functional component and thus can not receive refs. Changing the element to a regular <input>
fixed the issue
The error is caused because Semantic UI React's <Form.Input>
is a functional component and thus can not receive refs. Changing the element to a regular <input>
fixed the issue
answered Nov 23 at 18:42
Sean Dezoysa
164113
164113
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420516%2freact-ref-binding-results-in-typeerror-cannot-read-property-focus-of-null%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
do you get this in browser, in unit test or maybe SSR?
– skyboyer
Nov 21 at 21:14
In browser, specifically Chrome Version 70.0.3538.77
– Sean Dezoysa
Nov 21 at 21:18