161
Views
5
Comments
search by pressing enter
Question
Application Type
Reactive

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.

UserImage.jpg
Gayathri Gali

Hi,

Thanks,

I checked that link but I dont know how to use the javascript. Please help me.

2025-01-15 08-35-04
Vignesh Sekar

HI,

Please find the OML

i use JS on on ready you can use it onchange of that input aswell


ForumReply.oml
UserImage.jpg
Anjali Choudhary

@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;}



Application_Test2.oml
2024-02-23 00-37-54
Ruru

Hi @Harshit Nag ,

I tried this, and it works, but it says that the declaration is deprecated, would there be a future problem? 


Thanks,

Ruru

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.