I have defined the following event handler for the component
<Editable
onKeyDown={(event) => handleChange(event)
onPaste={(event) => handlePaste(event)}
/>
Within the event handler I'd like to stop the event from being dispatched and change the data of the clipboard. What I'm missing is how to change the data and how to dispatch it after changing it.
The ultimate goal is to restrict the number of characters a user can type in.
const handlePaste = (event) => {
event.preventDefault();
let data = event.clipboardData.getData('Text');
// Changing the data here
// pasteing the data as input to Editable
};
I'd be glad over any kind of help!
This is how it could be done: