How can I disable Paste (Ctrl+V) and Copy (Ctrl+C) option in one of my TextFields of MaterialUI?
Iḿ using ReactJs
How can I disable Paste (Ctrl+V) and Copy (Ctrl+C) option in one of my TextFields of MaterialUI?
Iḿ using ReactJs
onCopy onCut onPaste are clipboard events. The below code is the sample.
The reference in react docs is below.
https://reactjs.org/docs/events.html#clipboard-events
const handleChange = (e) => {
e.preventDefault();
};
<TextField
value={val}
onCut={handleChange}
onCopy={handleChange}
onPaste={handleChange}
/>