Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2020-12-23 07:03 PM
how to create the keypress event custom code to avoid the | (pipe) symbol in a archer text field
2020-12-24 10:36 AM
Ramkumar, is it a text field or text area field?
Advisory Consultant
2020-12-28 01:45 AM
HI David,
This is Text field
2020-12-28 07:27 PM
David any possibilities to achieve this in custom code for text field David Petty
2021-01-04 12:04 PM
I think David Petty presented nice example already:
It was for Date field, but you can do the same for Text Field by finding the proper element using DevTools, e.g:
$('input[id*="f' + fldId + 'c"]').change(function(){
console.log("Text field changed");
});
And then use some regexp function or indexOf to seek for the pipe delimiter. You can also use other events, like keyup event instead of change, etc.