KeyFilter is not working on pase #7729
Labels
Type: Bug
Issue contains a bug related to a specific component. Something about the component is not working
Milestone
I'm submitting a ... (check one with "x")
Current behavior
Paste is not working
Expected behavior
Paste should work.
Angular version: 7.2
PrimeNG version: 7.1.3
Validated this code is not giving proper response:
@HostListener('paste', ['$event'])
onPaste(e) {
const clipboardData = e.clipboardData || (window).clipboardData.getData('text');
if (clipboardData) {
const pastedText = clipboardData;
if (!this.regex.test(pastedText)) {
e.preventDefault();
}
}
The text was updated successfully, but these errors were encountered: