Groups
Groups
Sign in
Groups
Groups
Jam.py Users Mailing List
Conversations
About
Send feedback
Help
documentation for Key up event
11 views
Skip to first unread message
Ari Sobel
unread,
Jul 16, 2025, 9:51:49 AM
Jul 16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jam.py Users Mailing List
Hi to all,
regarding
te below documentation?:
https://jampy-docs-v7.readthedocs.io/en/latest/refs/client/task/on_edit_form_keyup.html
Can anyone give me an example?
I want to turn into uppercase when I hint a specific field.
thanks and
regards,
Ari
Dean D. Babic
unread,
Jul 16, 2025, 9:09:34 PM
Jul 16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jam.py Users Mailing List
On Demo:
https://jampy.pythonanywhere.com/
function on_view_form_keyup(item, event) {
if (event.keyCode === 45 && event.ctrlKey === true){
if (item.master) {
item.append_record();
}
else {
item.insert_record();
}
}
else if (event.keyCode === 46 && event.ctrlKey === true){
// item.delete_record();
item.alert('Cannot be deleted on Demo!');
}
}
Find JS key codes on Google.
Reply all
Reply to author
Forward
0 new messages