-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
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
[TextField] with value via parents props latency between typings #1040
Comments
I've seen this too. I think because the state object on the parent component is changing, this is causing every field to re-render. In house, we're wrapping field, and have a pure-render-mixin applied - however we had to suppose valueLink, and some deepness in models - which the React.addons.PureRenderMixin doesn't. @hai-cea - is something like this too opinionated to include in the core? (Excuse the coffeescript)
|
@chrismcv I think we need to address |
|
Is there any way to prevent the others component to re-render when I typing into TextField? One more question this will be fixed in a new material-ui version? |
Typing in textfields is indeed extremely slow, Firefox and Chrome. If you type really fast, it may even lock up for 2-3 seconds. //edit: tested on demo page Text Fields. |
Encountered the same problem. I'm currently using |
Seems to work very smooth now, only tested chrome but I think that fixed it. Great job! |
how can i do this, im experiencing the same issue? |
When I use TextField with value from parents props there is a latency between typing a letter and displaying it on the screen. I see this issue on my project and at official page for TextField component (I talk about the third TextField from the first colunm).
The text was updated successfully, but these errors were encountered: