Seeking Assistance
I am looking to integrate an "Arabic keyboard input filtering" using the onkeyup
and onkeypress
events similar to the example provided in this link.
<input type="text"
name="searchBox"
value=""
placeholder="بحث"
size="25"
onkeypress="if(this.value.match(/[^\u0621-\u063A\u0640-\u0657\u0670\uFE70-\uFEFC]/)) this.value=this.value.replace(/[^\u0621-\u063A\u0640-\u0657\u0670\uFE70-\uFEFC]/g,'')"
onkeyup="if(this.value.match(/[^\u0621-\u063A\u0640-\u0657\u0670\uFE70-\uFEFC]/)) this.value=this.value.replace(/[^\u0621-\u063A\u0640-\u0657\u0670\uFE70-\uFEFC]/g,'')"
style="direction: rtl; width: 100px;">
How can I implement the "Arabic keyboard input filtering" feature in the Quasar-Framework component q-search?
Thank you for any assistance provided