Hi,
I want to search in the table using text, date and case number when I press the enter. I had seen many posts in forum but did not understand how to do this. Please tell me some simple solution for this.
Hi
https://www.outsystems.com/forums/discussion/67671/trigger-an-action-with-the-enter-key
hope this will work
Thanks,
I checked that link but I dont know how to use the javascript. Please help me.
HI,
Please find the OML
i use JS on on ready you can use it onchange of that input aswell
@Gayathri Gali
You can add onkeyup event in Textbox and write javascript like below,
var keyCode =(window.event) ? event.keyCode : event.which;
if(keyCode==13){$parameters.IsSubmit = true;}else{$parameters.IsSubmit = false;}
Hi @Harshit Nag ,
I tried this, and it works, but it says that the declaration is deprecated, would there be a future problem?
Ruru