Hello,
I have a power portal form with a field 'item number delete', the user types a number into this field and the form searches for that number in a separate table. When it finds the number, it then will go to the next row to see if that item number can be deleted (yes or no). If no, the user gets an error message. If yes the user continues as normal.
so for example there's:
form- #form
form field- #itemnumberdelete
table- #table
table row 1- #itemnumber
table row 2- #delete
My issue is that I can't figure out how to reference the table in the JQuery code.
I can reference the form field using its id: $(#itemnumberdelete)
but I can't figure out how to reference the separate table.
I can also access the table data and table definition where it show the api url. If anyone could tell me what they think might work, I'd really appreciate it! Thanks!