【问题标题】:I want to disable keyboard input for this date picker how to do that?我想禁用此日期选择器的键盘输入,该怎么做?
【发布时间】:2021-05-04 00:18:50
【问题描述】:

请检查此链接并告诉我应该为此使用哪些道具或事件....

https://codesandbox.io/s/charming-frost-qrvwe?file=/src/App.js

【问题讨论】:

    标签: javascript html reactjs dom material-ui


    【解决方案1】:

    使用inputProps 属性。

    <TextField
            id="date"
            label="Birthday"
            type="month"
            defaultValue="2017-05"
            className={classes.textField}
            InputLabelProps={{
              shrink: true,
            
            }}
            InputProps={{
              readOnly: true,
             }}
          />
    

    【讨论】:

    猜你喜欢
    • 2022-01-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-06-10
    • 2020-11-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多