Reputation: 235
I need my TextareaAutosize max length is 60 , i set the property inputProps equal 60, it doesn't work.
<TextareaAutosize classes={classes.textarea} ref={textAreaRef} aria-label="empty textarea" rowsMin={5} inputProps={{"maxLength":60}} placeholder="60 Character Limit" />
Upvotes: 1
Views: 2561
Reputation: 8412
maxLength
you put it directly to propsBecause TextareaAutosize
inherit from HTMLTextAreaElement
<TextareaAutosize
classes={classes.textarea}
ref={textAreaRef}
aria-label="empty textarea"
rowsMin={5}
maxLength={60}
placeholder="60 Character Limit"
/>;
Live example:
Upvotes: 3