Where is the onKeyPress event?

I’m trying to implement the content of this tutorial on my website, but the onKeyPress event is missing from my input boxes.

I’ve added code referencing such event but it’s not doing anything.

export function input2_keyPress(event, $w){
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
    console.log($w("#input2").value);
 if (debounceTimer) {
    clearTimeout(debounceTimer);
    debounceTimer = undefined;
    }
    debounceTimer = setTimeout(() => {
        filter($w('#input2').value);  
    }, 200);
}

It’s on the property panel.

This is all I can find:

Well… this is embarrassing. I maximized it and voila! There it is.

Weird that I can’t scroll down when it is minimized.

It can happen. By the way, you may like to consider using onInput instead.

@miguel-galvez Same happened to me and I thought it didn’t work for mine, I’m glad I finally figured it out thanks to this. Thank you